/* ===========================================================================
   Ctyrkolak  --  styly webu
   Barevna paleta: lesni zelena, pisek/krem, hneda, zlaty akcent
   =========================================================================== */
:root {
  --green-900: #1f3d2b;
  --green-700: #2f5e41;
  --green-600: #3a7350;
  --green-500: #4a8560;
  --cream: #f7f2e9;
  --cream-2: #fbf8f1;
  --sand: #ece2cd;
  --brown: #7a5c43;
  --brown-dark: #5a4231;
  --gold: #c79a3a;
  --gold-dark: #b0842b;
  --ink: #2a2620;
  --muted: #6b6457;
  --line: #e6dcc8;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(40, 32, 20, 0.06);
  --shadow: 0 10px 30px rgba(40, 32, 20, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 61, 43, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; color: var(--green-900); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin: 0 0 .5em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }
a { color: var(--green-700); }
img, svg, iframe { max-width: 100%; }

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

.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-alt { background: var(--cream); }
.section-green { background: linear-gradient(160deg, var(--green-700), var(--green-900)); color: var(--cream); }
.section-green h2, .section-green .section-eyebrow.light { color: var(--cream); }

.section-head { max-width: 680px; margin: 0 auto clamp(32px, 5vw, 56px); }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 700; color: var(--gold-dark); margin: 0 0 .6rem;
}
.section-eyebrow.light { color: #e7c97b; }
.lead { font-size: 1.12rem; color: var(--muted); }
.section-green .lead { color: rgba(247, 242, 233, .85); }

/* ---------- Tlacitka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #2a2208; border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green-800, var(--green-900)); border-color: currentColor; }
.btn-outline:hover { background: rgba(255,255,255,.5); }
.section-green .btn-outline { color: var(--cream); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Hlavicka ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, .9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--green-900); font-weight: 700; }
.logo-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-700); color: var(--gold); flex: none;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { font-family: var(--font-head); font-size: 1.3rem; }
.logo-img { height: 56px; width: auto; display: block; mix-blend-mode: multiply; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .98rem; transition: color .15s; }
.nav a:hover { color: var(--gold-dark); }
.nav .nav-cta { color: #2a2208; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-900); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero-scene { position: absolute; inset: 0; z-index: -1; }
.hero-svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-content { padding: clamp(70px, 12vw, 140px) 24px clamp(90px, 14vw, 170px); max-width: 720px; }
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.7); color: var(--green-700);
  padding: .35rem .9rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; margin: 0 0 1.1rem; box-shadow: var(--shadow-sm);
}
.hero h1 { color: var(--green-900); max-width: 16ch; }
.hero-sub { font-size: 1.18rem; color: #41463c; max-width: 52ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero-contact { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; font-weight: 500; }
.hero-contact a { color: var(--green-900); text-decoration: none; }
.hero-contact a:hover { color: var(--gold-dark); }

/* ---------- O nas / staty ---------- */
.about-text { margin-top: 1.4rem; text-align: left; }
.about-text p { color: #3c3a33; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(36px, 6vw, 64px);
}
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1rem; text-align: center; box-shadow: var(--shadow-sm);
}
.stat-value { font-family: var(--font-head); font-size: 2.1rem; color: var(--green-700); font-weight: 700; }
.stat-label { color: var(--muted); font-size: .92rem; }

/* ---------- Karty sluzeb ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  background: var(--cream); color: var(--green-700); margin-bottom: 1.1rem;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { color: var(--green-900); }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Cenik ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  min-width: 0; /* umozni bunce v gridu se zmensit -> siroky cenik scrolluje uvnitr, ne pres celou stranku */
}
.price-card h3 { color: var(--green-700); padding-bottom: .8rem; border-bottom: 2px solid var(--sand); }
.price-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-name { color: var(--ink); }
.price-name small { color: var(--muted); font-size: .82rem; }
.price-val { font-weight: 700; color: var(--green-900); white-space: nowrap; }
.pricing-note { text-align: center; color: var(--muted); max-width: 640px; margin: 2rem auto 0; font-size: .95rem; }

/* ---------- Dvousloupcove sekce ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.two-col.reverse .two-col-media { order: -1; }
.check-list { list-style: none; margin: 1.2rem 0; padding: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 1.2rem; height: 1.2rem;
  border-radius: 50%; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/72% no-repeat;
}
.section-green .check-list li::before { background: #e7c97b; }
.muted-note { font-size: .92rem; opacity: .8; }
.two-col-media .photo-placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius); border: 2px dashed var(--line);
  background: var(--cream); display: grid; place-content: center; gap: .6rem; justify-items: center;
  color: var(--brown); text-align: center; padding: 1rem;
}
.section-green .photo-placeholder { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: var(--cream); }
.photo-placeholder svg { width: 54px; height: 54px; opacity: .7; }
.photo-placeholder span { font-size: .9rem; opacity: .85; }

/* ---------- Rezervacni formular ---------- */
.booking-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row:has(.field:nth-child(3)) { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field > span { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field em { color: #c0392b; font-style: normal; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream-2); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(74, 133, 96, .18); background: var(--white);
}
.field textarea { resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; margin: .3rem 0 1.2rem; font-size: .94rem; color: var(--muted); }
.checkbox input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; flex: none; accent-color: var(--green-700); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
/* ---------- "Jak to probiha" - 3 kroky nad formularem ---------- */
.process-strip {
  list-style: none; margin: 0 0 clamp(24px, 4vw, 40px); padding: 1.1rem 1.3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem 1.6rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
}
.process-strip li { display: flex; align-items: center; gap: .7rem; position: relative; }
.process-num {
  display: grid; place-items: center; flex: none; width: 2rem; height: 2rem;
  border-radius: 50%; background: var(--green-700); color: var(--cream);
  font-weight: 700; font-size: .95rem;
}
.process-text { font-size: .93rem; line-height: 1.35; }
.process-strip li:not(:last-child)::after {
  content: "→"; position: absolute; right: -1.15rem; color: var(--gold-dark); font-weight: 700;
}
@media (max-width: 640px) {
  .process-strip { grid-template-columns: 1fr; }
  .process-strip li:not(:last-child)::after { content: none; }
}

.submit-note { margin: .6rem 0 0; text-align: center; font-size: .92rem; color: var(--muted); }
.form-status { margin: 1rem 0 0; text-align: center; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green-700); }
.form-status.err { color: #c0392b; }

/* ---------- Vyber turnusu (letni tabor) ---------- */
/* Rezim tabora: skryt datum + cas, pole "pocet osob" nechat na plnou sirku */
.booking-form.mode-camp #fieldDate,
.booking-form.mode-camp #fieldTime { display: none; }
.booking-form.mode-camp #rowDTP { grid-template-columns: 1fr; }
.turnus-list { display: grid; gap: .6rem; }
.turnus-item {
  display: flex; align-items: flex-start; gap: .7rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream-2); padding: .7rem .85rem; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.turnus-item:hover { border-color: var(--green-500); }
.turnus-item input { margin-top: .2rem; flex: none; width: 1.1rem; height: 1.1rem; accent-color: var(--green-700); }
.turnus-item:has(input:checked) {
  border-color: var(--green-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 133, 96, .18);
}
.turnus-info { display: flex; flex-direction: column; gap: .1rem; }
.turnus-name { font-weight: 600; color: var(--ink); }
.turnus-dates { font-size: .9rem; color: var(--muted); }
.turnus-avail { font-size: .85rem; font-weight: 600; color: var(--green-700); }
.turnus-note { color: var(--gold, #c79a3a); font-weight: 700; }
.turnus-item.is-full { opacity: .6; cursor: not-allowed; }
.turnus-item.is-full:hover { border-color: var(--line); }
.turnus-item.is-full .turnus-avail { color: #c0392b; }
.turnus-hint { margin: .55rem 0 0; font-size: .85rem; color: var(--muted); }
.turnus-empty { margin: 0; font-size: .92rem; color: var(--muted); }
.camp-turnus { margin-bottom: 1rem; }

/* ---------- Cena a slevy tabora ---------- */
.camps-info {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream-2); padding: 1rem 1.1rem; margin: 1rem 0 0;
}
.camps-info-title { margin: 0 0 .6rem; font-size: 1.05rem; color: var(--green-700); }
.camps-slevy-title { margin: 1rem 0 .5rem; font-size: .98rem; color: var(--ink); }
.camps-price { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.camps-price li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .4rem .6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.camps-price strong { font-size: 1.05rem; color: var(--green-700); white-space: nowrap; }
.camps-slevy { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.camps-slevy li {
  display: grid; grid-template-columns: 1fr auto; gap: .5rem .8rem; align-items: baseline;
  padding: .35rem .1rem; border-bottom: 1px dashed var(--line); font-size: .92rem;
}
.camps-slevy li:last-child { border-bottom: 0; }
.camps-slevy .s-amount { font-weight: 700; color: var(--green-700); white-space: nowrap; }
/* Headline "Sleva až X Kč" nad seznamem slev */
.slevy-headline {
  margin: 0 0 .7rem; padding: .5rem .8rem; background: #dcece1; border-radius: var(--radius-sm);
  color: var(--green-700); font-weight: 600; font-size: .95rem;
}
.slevy-headline strong { font-size: 1.15rem; white-space: nowrap; }
/* Pravidla scitani slev v rozklikavacim detailu pod seznamem */
.slevy-rules { margin: .6rem 0 0; }
.slevy-rules > summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: .35rem;
  font-size: .88rem; font-weight: 600; color: var(--green-700);
}
.slevy-rules > summary::-webkit-details-marker { display: none; }
.slevy-rules > summary::after { content: "▾"; font-size: .8em; }
.slevy-rules[open] > summary::after { content: "▴"; }
.slevy-rules p { margin: .45rem 0 0; font-size: .84rem; color: var(--muted); line-height: 1.5; }
.camps-note { margin: .6rem 0 0; font-size: .84rem; color: var(--muted); line-height: 1.5; }
.camps-desc { margin: 1rem 0 0; }
.camps-desc p { margin: 0 0 .6rem; font-size: .92rem; line-height: 1.6; color: var(--ink); }
.camps-desc p:last-child { margin-bottom: 0; }
.camps-more-toggle { margin: .8rem 0 0; }
.camps-more-toggle > summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: .4rem;
  font-family: inherit; font-size: .92rem; font-weight: 600;
  color: var(--green-700); background: var(--white);
  border: 1.5px solid var(--green-500); border-radius: var(--radius-sm);
  padding: .5rem .95rem; transition: background .15s, color .15s;
}
.camps-more-toggle > summary::-webkit-details-marker { display: none; }
.camps-more-toggle > summary:hover { background: var(--green-500); color: var(--white); }
.camps-more-toggle > summary::after { content: "▾"; font-size: .8em; }
.camps-more-toggle[open] > summary::after { content: "▴"; }
.camps-more-toggle > summary .lbl-less { display: none; }
.camps-more-toggle[open] > summary .lbl-more { display: none; }
.camps-more-toggle[open] > summary .lbl-less { display: inline; }
.camps-detail-body { padding: .8rem 0 .3rem; }
.camps-detail-body p { margin: 0 0 .7rem; font-size: .92rem; line-height: 1.6; color: var(--ink); }
.camps-facts { margin: .5rem 0 0; display: grid; gap: .5rem; }
.camps-facts dt { font-weight: 600; color: var(--ink); font-size: .9rem; }
.camps-facts dd { margin: .1rem 0 0; font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--green-900);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--gold-dark); border-radius: 2px; transition: transform .2s ease;
}
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-answer { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-answer p { margin: 0; }

/* ---------- Kontakt ---------- */
.contact-list { list-style: none; padding: 0; margin: 1rem 0 1.6rem; }
.contact-list li { display: flex; flex-direction: column; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.contact-list strong { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-list a, .contact-list span { color: var(--ink); text-decoration: none; font-size: 1.05rem; }
.hours { margin-top: .5rem; }
.hours strong { display: block; margin-bottom: .5rem; }
.hours-row { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed var(--line); max-width: 360px; }
.map { width: 100%; height: 100%; min-height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Paticka ---------- */
.site-footer { background: var(--green-900); color: rgba(247,242,233,.85); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.logo-footer { color: var(--cream); }
.logo-footer .logo-img {
  height: 80px; mix-blend-mode: normal;
  background: #fff; border-radius: 12px; padding: 8px;
}
.footer-tagline { margin-top: .8rem; opacity: .8; }
.footer-contact, .footer-social { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a, .footer-social a, .footer-bottom a { color: rgba(247,242,233,.85); text-decoration: none; }
.footer-contact a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; opacity: .85;
}

/* ---------- AI chat widget ---------- */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; cursor: pointer;
  background: var(--green-700); color: var(--cream);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 6px 16px rgba(31,61,43,.28), 0 12px 34px rgba(31,61,43,.30);
  display: grid; place-items: center; transition: transform .2s ease, background .2s, box-shadow .2s;
}
.chat-fab:hover { background: var(--green-600); transform: scale(1.05); box-shadow: 0 8px 20px rgba(31,61,43,.34), 0 16px 40px rgba(31,61,43,.34); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab .chat-fab-close { display: none; }
.chat-fab.open .chat-fab-open { display: none; }
.chat-fab.open .chat-fab-close { display: block; }

/* jiskřičky – vizuální náznak AI */
.chat-fab-spark {
  position: absolute; top: -3px; right: -3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #2a2208;
  display: grid; place-items: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(40,32,20,.25);
  animation: chatSpark 2.6s ease-in-out infinite;
}
.chat-fab-spark svg { width: 13px; height: 13px; }
.chat-fab.open .chat-fab-spark { display: none; }
@keyframes chatSpark {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: .8; }
}

/* odložený obláček (teaser) */
.chat-teaser {
  position: fixed; right: 92px; bottom: 30px; z-index: 60;
  max-width: 230px; padding: .7rem .95rem;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line); border-radius: 16px 16px 4px 16px;
  box-shadow: var(--shadow);
  font-size: .9rem; line-height: 1.4;
  display: flex; align-items: flex-start; gap: .5rem;
  opacity: 0; transform: translateY(6px) scale(.96); transform-origin: bottom right;
  pointer-events: none; transition: opacity .28s ease, transform .28s ease;
}
.chat-teaser.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-teaser-text { flex: 1; }
.chat-teaser-close {
  flex: none; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: .85rem; line-height: 1; padding: 2px; margin: -2px -2px 0 0;
}
.chat-teaser-close:hover { color: var(--ink); }

.chat-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 60;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 130px));
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header { background: var(--green-700); color: var(--cream); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: .7rem; }
.chat-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 1.2rem; }
.chat-header strong { display: block; font-size: .98rem; }
.chat-header small { opacity: .85; font-size: .78rem; }
.chat-close { background: none; border: 0; color: var(--cream); font-size: 1.1rem; cursor: pointer; opacity: .85; }
.chat-close:hover { opacity: 1; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--cream-2); }
.msg { max-width: 85%; padding: .65rem .9rem; border-radius: 14px; font-size: .95rem; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word; }
.msg.bot { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; color: var(--ink); }
.msg.user { background: var(--green-700); color: var(--cream); border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.typing { color: var(--muted); font-style: italic; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 12px 8px; background: var(--cream-2); }
.chat-suggestions button {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem .8rem; font-size: .82rem; color: var(--green-700); cursor: pointer; font-family: inherit;
  transition: background .15s, border-color .15s;
}
.chat-suggestions button:hover { background: var(--cream); border-color: var(--green-500); }
/* Zvyrazneni sekce/formulare, na ktery AI asistent posunul uzivatele */
.section-flash { animation: sectionFlash 1.6s ease-out; }
.form-flash { animation: sectionFlash 1.6s ease-out; }
@keyframes sectionFlash {
  0% { box-shadow: inset 0 0 0 3px rgba(199, 154, 58, .55); }
  100% { box-shadow: inset 0 0 0 3px rgba(199, 154, 58, 0); }
}

/* Rekapitulacni karta prihlasky v chatu */
.chat-confirm-card { max-width: 95%; }
.chat-confirm-card dl { margin: .5rem 0; display: grid; grid-template-columns: auto 1fr; gap: .15rem .6rem; }
.chat-confirm-card dt { color: var(--muted); font-size: .82rem; }
.chat-confirm-card dd { margin: 0; font-size: .88rem; word-break: break-word; }
.chat-confirm-note { margin: .4rem 0; font-size: .78rem; color: var(--muted); }
.chat-confirm-buttons { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.chat-confirm-buttons button {
  border: 1px solid var(--line); border-radius: 999px; padding: .45rem .9rem;
  font-size: .85rem; font-family: inherit; cursor: pointer; background: var(--white);
  color: var(--green-700); transition: background .15s, border-color .15s;
}
.chat-confirm-buttons button:hover { background: var(--cream); border-color: var(--green-500); }
.chat-confirm-buttons button.primary { background: var(--gold); border-color: var(--gold); color: #2a2208; font-weight: 600; }
.chat-confirm-buttons button.primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.chat-confirm-buttons button:disabled { opacity: .6; cursor: default; }

/* ---------- Hlasovy hovor v chat panelu ---------- */
.chat-header-actions { display: flex; align-items: center; gap: .35rem; }
.chat-call {
  flex: none; border-radius: 999px; border: 0; cursor: pointer;
  padding: .34rem .72rem; gap: .34rem;
  background: var(--gold); color: #2a2208; font-family: inherit; font-size: .82rem; font-weight: 600;
  display: inline-flex; align-items: center; transition: background .15s, color .15s, box-shadow .15s;
}
.chat-call:hover { background: var(--gold-dark); }
.chat-call svg { width: 16px; height: 16px; }
.chat-call-label { line-height: 1; white-space: nowrap; }
.chat-call.is-active { background: #b4472e; color: var(--white); }
.chat-call.is-active:hover { background: #9c3c26; }
.chat-call[hidden] { display: none; }

/* Po otevreni panelu tlacitko chvili pulzuje, at si ho navstevnik vsimne.
   Animace bezi jen dokud uzivatel nenajel/neklikl (.no-hint ji vypne). */
.chat-panel.open .chat-call:not(.is-active):not(.no-hint) { animation: chatCallHint 1.8s ease-out 3; }
.chat-call:hover, .chat-call:focus-visible { animation: none !important; }
@keyframes chatCallHint {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199,154,58,0); }
  35% { box-shadow: 0 0 0 5px rgba(199,154,58,.45); }
  70% { box-shadow: 0 0 0 9px rgba(199,154,58,0); }
}

.chat-call-bar {
  display: flex; align-items: center; gap: .6rem;
  padding: 10px 12px; border-top: 1px solid var(--line);
  background: var(--cream); color: var(--ink); font-size: .88rem;
}
.chat-call-bar[hidden] { display: none; }
.chat-call-status { flex: 1; }
.chat-call-orb { flex: none; width: 11px; height: 11px; border-radius: 50%; background: var(--muted); }
.chat-call-bar.is-connecting .chat-call-orb { background: var(--gold); animation: callPulse 1.1s ease-in-out infinite; }
.chat-call-bar.is-listening .chat-call-orb { background: var(--green-600); animation: callPulse 1.7s ease-in-out infinite; }
.chat-call-bar.is-speaking .chat-call-orb { background: var(--gold); animation: callWave .9s ease-in-out infinite; }
.chat-call-bar.is-error { background: #fdf1ec; }
.chat-call-bar.is-error .chat-call-orb { background: #b4472e; }
.chat-call-actions { display: flex; gap: .4rem; }
.chat-call-btn {
  flex: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: var(--white); color: var(--green-700);
  display: grid; place-items: center; transition: background .15s, color .15s;
}
.chat-call-btn svg { width: 16px; height: 16px; }
.chat-call-mute[aria-pressed="true"] { background: var(--sand); color: var(--muted); }
.chat-call-hangup { background: #b4472e; border-color: #b4472e; color: var(--white); }
.chat-call-hangup:hover { background: #9c3c26; border-color: #9c3c26; }
.chat-call-bar.is-error .chat-call-actions { display: none; }

/* hlaseni stavu hovoru pro ctecky obrazovky (lista se schovava, tohle ne) */
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* behem hovoru na mobilu: panel scvrkly na hlavicku + listu, at je videt formular */
@media (max-width: 719px) {
  .chat-panel.call-mini { height: auto; }
  .chat-panel.call-mini .chat-messages,
  .chat-panel.call-mini .chat-suggestions,
  .chat-panel.call-mini .chat-input { display: none; }
}

@keyframes callPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .55; } }
@keyframes callWave { 0%, 100% { transform: scale(.8); } 50% { transform: scale(1.45); } }

.chat-input { display: flex; gap: .5rem; padding: 12px; border-top: 1px solid var(--line); background: var(--white); }
.chat-input input:disabled { opacity: .6; cursor: not-allowed; }
.chat-input input {
  flex: 1; font-family: inherit; font-size: .95rem; padding: .65rem .85rem;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--cream-2);
}
.chat-input input:focus { outline: none; border-color: var(--green-500); background: var(--white); }
.chat-input button {
  flex: none; width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: #2a2208; display: grid; place-items: center; transition: background .15s;
}
.chat-input button:hover { background: var(--gold-dark); }
.chat-input button svg { width: 19px; height: 19px; }

/* ---------- Responsivita ---------- */
@media (max-width: 880px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream-2); padding: 1rem 24px 1.5rem; gap: .4rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s ease; max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .7rem .2rem; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { margin-top: .5rem; border-bottom: 0; }
  .nav-toggle { display: block; }
  .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); }

  .cards-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .two-col-media { order: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 560px) {
  .cards-grid, .pricing-grid, .stats { grid-template-columns: 1fr; }
  .form-row, .form-row:has(.field:nth-child(3)) { grid-template-columns: 1fr; }
  .hero-content { padding-top: 60px; }
  .chat-panel { right: 16px; left: 16px; width: auto; bottom: 88px; height: min(70vh, 520px); }
  .chat-fab { right: 16px; bottom: 16px; }
  .chat-teaser { right: 84px; bottom: 22px; max-width: min(220px, calc(100vw - 108px)); }
  /* na uzke hlavicce nechame u tlacitka jen ikonu, at se nic netlaci */
  .chat-call { padding: .4rem; }
  .chat-call:not(.is-active) .chat-call-label { display: none; }
}

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

/* ===========================================================================
   Doplnkove komponenty (cenik-tabulky, kontakty, provozni rad, FVE, paticka)
   =========================================================================== */

/* ---------- Cenik: siroke tabulky ---------- */
.price-card-wide { grid-column: 1 / -1; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; min-width: 0; max-width: 100%; }
.price-matrix { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 520px; }
.price-matrix th, .price-matrix td { padding: .7rem .8rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-matrix thead th { background: var(--cream); color: var(--green-700); font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; }
.price-matrix tbody tr:last-child td { border-bottom: 0; }
.price-matrix td.rowhead { font-weight: 600; color: var(--green-900); }
.price-matrix td:not(.rowhead) { font-weight: 600; color: var(--green-900); }
.price-card-note { margin: .9rem 0 0; font-size: .85rem; color: var(--muted); }

/* ---------- Hero kontakty ---------- */
.hero-contact .sep { opacity: .45; }
.hero-contact a { display: inline-flex; gap: .35rem; }

/* ---------- Kontaktni osoby ---------- */
.contact-persons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 2.4rem; }
.person-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.person-tag { display: inline-block; background: var(--green-700); color: var(--cream); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .7rem; }
.person-card h3 { margin: 0 0 .2rem; }
.person-role { color: var(--muted); font-size: .92rem; margin: 0 0 .9rem; }
.person-line { display: block; color: var(--ink); text-decoration: none; font-weight: 500; padding: .15rem 0; }
.person-line:hover { color: var(--gold-dark); }
.contact-grid { align-items: start; }
.legal-box { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.legal-box strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .4rem; }
.legal-box p { font-size: .9rem; color: var(--ink); line-height: 1.7; margin: 0; }

/* ---------- Provozni rad ---------- */
.rules-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; }
.rules-box summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--green-900); display: flex; align-items: center; justify-content: space-between; }
.rules-box summary::-webkit-details-marker { display: none; }
.rules-list { margin: 0; padding: 0 1.3rem 1.2rem 2.6rem; color: var(--muted); }
.rules-list li { margin-bottom: .55rem; }
.rules-emergency { text-align: center; font-weight: 600; color: var(--green-900); background: var(--sand); border-radius: var(--radius-sm); padding: .85rem 1rem; margin: 0 0 1rem; }

/* ---------- Pruhova sekce / FVE ---------- */
.section-band { background: var(--cream); padding: clamp(40px, 6vw, 64px) 0; }
.fve-inner { display: flex; align-items: center; gap: 1.6rem; max-width: 860px; margin: 0 auto; }
.fve-inner h2 { font-size: 1.6rem; margin-bottom: .3rem; }
.fve-inner .lead { margin-bottom: .4rem; }
.fve-inner p:last-child { margin: 0; color: var(--muted); }
.fve-icon { flex: none; width: 72px; height: 72px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-dark); box-shadow: var(--shadow-sm); }
.fve-icon svg { width: 38px; height: 38px; }

/* ---------- Paticka sloupce ---------- */
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col strong { color: var(--cream); margin-bottom: .2rem; }
.footer-col a { color: rgba(247,242,233,.85); text-decoration: none; }
.footer-col a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .contact-persons { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .fve-inner { flex-direction: column; text-align: center; align-items: center; }
}

/* ===========================================================================
   Fotky, galerie, recenze, akce (rozsireni obsahu)
   =========================================================================== */

/* ---------- Hero fotka (kdyz je nahrana) ---------- */
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-img-shade {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(247,242,233,.92) 0%, rgba(247,242,233,.6) 40%, rgba(31,61,43,.25) 100%);
}

/* ---------- Fotka ve dvousloupcove sekci (misto placeholderu) ---------- */
.two-col-media .media-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}

/* ---------- Karty sluzeb s fotkou ---------- */
.service-card.has-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.service-card.has-photo:hover .service-photo img { transform: scale(1.04); }
.service-card.has-photo .service-body { padding: 1.4rem 1.6rem 1.8rem; }

/* ---------- Fotogalerie ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gallery-item {
  margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); background: var(--cream);
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-empty { width: 100%; height: 100%; display: grid; place-items: center; color: var(--brown); opacity: .5; }
.gallery-empty svg { width: 46px; height: 46px; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem .9rem;
  color: var(--white); font-size: .9rem; font-weight: 600;
  background: linear-gradient(to top, rgba(31,61,43,.78), rgba(31,61,43,0));
}

/* ---------- Recenze / rating ---------- */
.rating-band {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 6vw, 4rem);
  margin-bottom: .8rem;
}
.rating-stat { text-align: center; }
.rating-num { display: block; font-family: var(--font-head); font-size: 2.4rem; color: var(--green-700); font-weight: 700; line-height: 1; }
.rating-lbl { color: var(--muted); font-size: .9rem; }
.rating-note { color: var(--muted); font-size: .92rem; margin: 0 auto 1.6rem; max-width: 560px; }
/* Lista razeni recenzi (nejlepsi / nejhorsi / nejaktualnejsi / nejstarsi) */
.reviews-toolbar { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: 0 auto 1.8rem; }
.reviews-toolbar[hidden], .reviews-more-btn[hidden] { display: none !important; }
.reviews-toolbar .btn.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }
.reviews-more { margin-top: 1.6rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .8rem;
}
.review-stars { display: flex; gap: .15rem; color: var(--gold); }
.review-stars svg { width: 18px; height: 18px; }
.review-card blockquote { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.6; flex: 1; }
.review-card blockquote::before { content: "\201E"; color: var(--sand); font-family: var(--font-head); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: .15rem; }
.review-card figcaption { display: flex; flex-direction: column; }
.review-card figcaption strong { color: var(--green-900); }
.review-card figcaption span { color: var(--muted); font-size: .85rem; }
.social-cta { margin-top: 2.4rem; }
.social-cta p { margin-bottom: .8rem; color: var(--muted); }
.social-buttons { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Akce / zavody ---------- */
.events-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.event-item {
  display: flex; gap: 1.2rem; align-items: center; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.4rem; box-shadow: var(--shadow-sm);
}
.event-date {
  flex: none; width: 64px; text-align: center; background: var(--green-700); color: var(--cream);
  border-radius: var(--radius-sm); padding: .5rem 0; line-height: 1.1;
}
.event-day { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.event-mon { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.event-year { display: block; font-size: .72rem; opacity: .8; }
.event-info h3 { margin: 0 0 .2rem; }
.event-info p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Kontakt: portret / inicialy ---------- */
.person-head { display: flex; align-items: center; gap: 1rem; margin-bottom: .9rem; }
.person-photo { flex: none; width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.person-initials {
  display: grid; place-items: center; background: var(--green-700); color: var(--cream);
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
}
.person-head .person-tag { margin-bottom: .3rem; }
.person-head h3 { margin: 0; }

@media (max-width: 880px) {
  .gallery-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .rating-band { gap: 1.5rem; }
}

/* ===========================================================================
   Bezpecnost, scenarove karty ceniku, sbaleny cenik, social proof formulare
   =========================================================================== */

/* ---------- "Bezpecnost predevsim" - klidny pas na zacatku sekce sluzeb --- */
.safety-strip {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.5rem 1.8rem; margin: 0 0 clamp(28px, 4vw, 44px);
}
.safety-head { display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap; margin-bottom: 1rem; }
.safety-head h3 { margin: 0; font-size: 1.2rem; }
.safety-head p { margin: 0; color: var(--muted); font-size: .95rem; }
.safety-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: .9rem 1.4rem;
}
.safety-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; line-height: 1.45; }
.safety-list svg { flex: none; width: 22px; height: 22px; color: var(--green-600); margin-top: .05rem; }

/* ---------- Nejcastejsi scenare nad cenikem ---------- */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 0 0 clamp(28px, 4vw, 44px); }
.scenario-card {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.scenario-card h3 { font-size: 1.08rem; margin: 0 0 .25rem; }
.scenario-price { font-family: var(--font-head); font-size: 1.85rem; font-weight: 700; color: var(--green-700); line-height: 1.15; margin: 0 0 .45rem; }
.scenario-price small { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--muted); }
.scenario-desc { color: var(--muted); font-size: .92rem; margin: 0 0 .8rem; flex: 1; }
.scenario-cta { font-weight: 600; font-size: .92rem; color: var(--green-700); text-decoration: none; }
.scenario-cta:hover { color: var(--gold-dark); }

/* ---------- Sbaleny cenik vycviku (details v price-card) ---------- */
.price-collapse > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.price-collapse > summary::-webkit-details-marker { display: none; }
.price-collapse-label { display: flex; flex-direction: column; gap: .1rem; }
.price-collapse-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--green-700); line-height: 1.2; }
.price-collapse-hint { font-size: .88rem; color: var(--muted); }
.price-collapse-body { margin-top: 1rem; border-top: 2px solid var(--sand); padding-top: 1rem; }
.price-collapse-cat { margin: 0 0 .6rem; font-weight: 600; color: var(--green-900); font-size: .95rem; }

/* ---------- Cenikove tabulky jako karty na mobilu ----------
   Tabulka dostane z render.js na kazdou bunku data-label (nazev sloupce);
   tady se radek promeni v kartu a popisek vykresli pres ::before. */
@media (max-width: 640px) {
  .price-matrix, .price-matrix tbody, .price-matrix tr, .price-matrix td { display: block; }
  .price-matrix { min-width: 0; }
  .price-matrix thead { display: none; }
  .price-matrix tr {
    border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream-2);
    padding: .2rem .9rem .4rem; margin-bottom: .7rem;
  }
  .price-matrix tr:last-child { margin-bottom: 0; }
  .price-matrix td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
    padding: .5rem 0; border-bottom: 1px dashed var(--line); text-align: right;
  }
  .price-matrix td:last-child { border-bottom: 0; }
  .price-matrix td.rowhead {
    display: block; text-align: left; font-size: 1rem;
    padding: .55rem 0 .4rem; border-bottom: 1px solid var(--line);
  }
  .price-matrix td:not(.rowhead)::before {
    content: attr(data-label); flex: 1; text-align: left;
    font-weight: 500; color: var(--muted); font-size: .85rem;
  }
}

/* ---------- Social proof u poptavkoveho formulare ---------- */
.form-proof { text-align: center; margin: 0 0 clamp(24px, 4vw, 40px); }
.form-proof blockquote {
  margin: 0 auto .3rem; max-width: 46ch;
  font-family: var(--font-head); font-size: 1.15rem; color: var(--green-900); line-height: 1.45;
}
.form-proof-author { margin: 0 0 .8rem; color: var(--muted); font-size: .88rem; }
.form-proof-link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem 1rem; font-size: .9rem; font-weight: 600; color: var(--green-700);
  text-decoration: none; transition: border-color .15s, background .15s;
}
.form-proof-link:hover { border-color: var(--green-500); background: var(--white); }

/* ---------- Veta o praxi/kvalifikaci u kontaktnich osob ---------- */
.person-bio { margin: -.5rem 0 .9rem; font-size: .9rem; color: var(--ink); line-height: 1.5; }

@media (max-width: 880px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .safety-strip { padding: 1.3rem 1.4rem; }
}

/* ---------- Vetsi dotykove plochy na mobilu (~44px) ----------
   Umistene na konci, aby prebilo zakladni pravidla se stejnou specificitou. */
@media (max-width: 560px) {
  .hero-contact a,
  .contact-list a,
  .footer-col a, .footer-contact a, .footer-social a, .footer-bottom a { display: inline-block; padding: .5rem 0; }
  .person-line { padding: .5rem 0; }
}

/* ===========================================================================
   Doplnky: turnusy 2026, Google rating, sportovni dotace
   =========================================================================== */

/* ---------- Cena tabora: zakladni + varianta s vytvarnym turnusem ---------- */
.camps-price li { align-items: center; }
.camps-price .cp-name { min-width: 0; }
.cp-vals { display: flex; flex-direction: column; align-items: flex-end; gap: .05rem; text-align: right; }
.cp-art { font-size: .78rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* ---------- Rozklikavaci prehled turnusu (sekce Tabory) ---------- */
.camps-turnusy {
  margin: 1rem 0 0; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream-2); overflow: hidden;
}
.camps-turnusy > summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .8rem 1rem; background: #eaf1ea; transition: background .15s;
}
.camps-turnusy > summary::-webkit-details-marker { display: none; }
.camps-turnusy > summary:hover { background: #e2ece3; }
.ct-summary-label { display: flex; flex-direction: column; gap: .12rem; }
.ct-summary-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--green-700); line-height: 1.15; }
.ct-summary-hint { font-size: .84rem; color: var(--gold-dark); font-weight: 600; }
.camps-turnusy .faq-plus { color: var(--green-700); }
.camps-turnusy[open] .faq-plus::after { transform: scaleY(0); }
.camps-turnusy-body { padding: .85rem 1rem 1rem; }
.camps-turnusy-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.ct-item {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .55rem .7rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.ct-main { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.ct-name { font-weight: 600; color: var(--ink); }
.ct-dates { font-size: .88rem; color: var(--muted); }
.ct-art { color: var(--gold-dark); font-weight: 700; font-size: .8rem; white-space: nowrap; }
.ct-badge {
  flex: none; font-size: .78rem; font-weight: 700; padding: .28rem .6rem; border-radius: 999px; white-space: nowrap;
}
.ct-badge.is-open { color: var(--green-700); background: #dcece1; }
.ct-badge.is-full { color: #9a3b30; background: #f3e0dd; }
.ct-item.is-full { opacity: .6; }
.ct-legend { margin: .75rem 0 0; font-size: .82rem; color: var(--muted); line-height: 1.55; }
.ct-cta { display: inline-block; margin: .85rem 0 0; font-weight: 700; font-size: .92rem; color: var(--green-700); text-decoration: none; }
.ct-cta:hover { color: var(--green-900); text-decoration: underline; }

/* ---------- Google rating s hvezdickami (sekce Recenze) ---------- */
.rating-band { align-items: flex-start; }
.rating-google { text-decoration: none; display: inline-flex; flex-direction: column; align-items: center; gap: .35rem; }
.rating-google .rating-num { transition: color .15s; }
.rating-google:hover .rating-num { color: var(--green-900); }
.rating-den { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.stars-rating { position: relative; display: inline-block; line-height: 0; }
.stars-rating .stars-bg, .stars-rating .stars-fg { display: inline-flex; gap: .12rem; }
.stars-rating .stars-bg { color: var(--sand); }
.stars-rating .stars-fg { position: absolute; top: 0; left: 0; color: var(--gold); overflow: hidden; width: var(--fill, 100%); }
.stars-rating svg { width: 20px; height: 20px; flex: none; }

/* ---------- Sportovni dotace (verejna sekce #dotace) ---------- */
.funding-section { scroll-margin-top: 84px; }
.funding-inner { display: flex; align-items: center; gap: 1.8rem; max-width: 920px; margin: 0 auto; }
.funding-emblem-wrap { flex: none; }
.funding-emblem {
  display: grid; place-items: center; width: 88px; height: 88px; border-radius: 18px;
  background: #0a2e73; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: .05em;
  box-shadow: var(--shadow-sm);
}
.funding-emblem-img { width: 132px; height: auto; border-radius: 12px; background: #fff; padding: 8px; box-shadow: var(--shadow-sm); }
.funding-text h2 { font-size: 1.5rem; margin-bottom: .2rem; }
.funding-program { font-weight: 700; color: var(--green-700); margin: 0 0 .55rem; font-size: .95rem; }
.funding-lead { margin: 0 0 .6rem; color: var(--ink); }
.funding-purposes-lead { margin: 0 0 .35rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.funding-purposes { list-style: none; counter-reset: fp; margin: 0 0 .7rem; padding-left: 1.5rem; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.funding-purposes li { position: relative; margin: 0 0 .3rem; }
.funding-purposes li::before {
  counter-increment: fp; content: counter(fp, lower-alpha) ")";
  position: absolute; left: -1.5rem; font-weight: 700; color: var(--green-700);
}
.funding-link { display: inline-block; font-weight: 600; color: var(--green-700); text-decoration: none; }
.funding-link:hover { text-decoration: underline; }

/* Odkaz na dotaci v paticce, pod adresou */
.footer-funding {
  display: inline-block; margin-top: .8rem; font-size: .9rem; color: rgba(247,242,233,.85);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.22); padding-bottom: 1px;
}
.footer-funding:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 680px) {
  .funding-inner { flex-direction: column; text-align: center; gap: 1.1rem; }
  .funding-purposes { text-align: left; display: inline-block; }
}
@media (max-width: 560px) {
  .camps-turnusy > summary { padding: .75rem .85rem; }
  .ct-item { flex-wrap: wrap; }
  .rating-band { gap: 1.6rem 2.4rem; }
}
