/* ============================================================
   Robert Pospíchal — pospichalrobert.cz
   Moderní responzivní styl (Poppins, zelená paleta)
   ============================================================ */

:root {
  --green: #049f82;
  --green-dark: #008f72;
  --green-deep: #0b6e5c;
  --green-soft: #e6f5f1;
  --cream: #faf6f0;
  --blush: #f9ede9;
  --ink: #222222;
  --ink-soft: #454545;
  --gray: #676767;
  --white: #ffffff;
  --star: #ffd512;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(20, 45, 40, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 45, 40, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 45, 40, 0.16);
  --container: 1200px;
}

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

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

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--green-dark); text-decoration: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 800; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Doplňky ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-lead { max-width: 640px; color: var(--gray); }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(4, 159, 130, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(4, 159, 130, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green-soft); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Animace při scrollu ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HLAVIČKA
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 45, 40, 0.07);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.logo img { height: 30px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: inline-flex; }
.header-cta .btn { padding: 11px 24px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(4, 159, 130, 0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(4, 159, 130, 0.08), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(4, 159, 130, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 40%, rgba(0,0,0,0.5));
  -webkit-mask-image: linear-gradient(120deg, transparent 40%, rgba(0,0,0,0.5));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding-top: 60px;
  padding-bottom: 50px;
}

.hero-copy { padding-bottom: 0; }

.hero-tagline {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--green-dark); }

.hero-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.hero-sub strong { color: var(--ink); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-proof { display: flex; align-items: center; gap: 14px; }
.stars { display: inline-flex; gap: 3px; font-size: 1.1rem; color: var(--star); filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); line-height: 1; }
.hero-proof .stars { flex: none; }
.hero-proof p { font-size: 0.95rem; color: var(--gray); }
.hero-proof strong { color: var(--ink); }

/* Google hodnocení – odznak u CTA */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid rgba(20, 45, 40, 0.1);
  border-radius: 999px;
  padding: 7px 15px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.rating-badge .g-ico { width: 18px; height: 18px; flex: none; display: block; }
.rating-badge .rb-stars { color: var(--star); letter-spacing: 1px; }
.rating-badge strong { color: var(--ink); }
.rating-badge .rb-sub { color: var(--gray); font-weight: 500; }
.hero-rating { margin-bottom: 22px; }

/* Souhlas se zpracováním údajů */
.field-consent { margin-bottom: 18px; }
.field-consent label { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; cursor: pointer; }
.field-consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--green); }
.field-consent a { color: var(--green-dark); text-decoration: underline; }

.hero-visual { position: relative; align-self: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -8%;
  transform: translateX(-50%);
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,159,130,0.16) 0%, transparent 65%);
}
.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(20, 45, 40, 0.18));
}

.hero-badge {
  position: absolute;
  left: 0;
  top: 32%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}
.hero-badge .big { font-size: 1.3rem; color: var(--green-dark); line-height: 1; }
.hero-badge small { display: block; font-weight: 500; color: var(--gray); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Posuvný pás (ticker) – nekonečný auto-scroll s gradientem */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: linear-gradient(100deg, var(--green-deep) 0%, var(--green) 45%, #0bbf95 70%, var(--green-dark) 100%);
  background-size: 220% 100%;
  animation: tickerBg 14s ease-in-out infinite alternate;
}
@keyframes tickerBg {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 55s linear infinite reverse;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: flex; align-items: center; }
.ti {
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0 4px;
}
.tsep { padding: 0 20px; font-size: 0.95rem; opacity: 0.85; filter: saturate(0.85); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .ticker { animation: none; }
}

/* Pás se statistikami */
.stats-strip {
  position: relative;
  background: linear-gradient(120deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--white);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}
.stat { text-align: center; }
.stat .num { font-size: 1.9rem; font-weight: 900; line-height: 1.1; }
.stat .lbl { font-size: 0.88rem; opacity: 0.9; }

/* ============================================================
   SLUŽBY / OBLASTI
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(20, 45, 40, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
/* Barevný proužek nahoře, který se při najetí roztáhne */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transition: width 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4, 159, 130, 0.25);
}
.card:hover::before { width: 100%; }

.card-head { display: flex; align-items: center; gap: 16px; }

.card-icon {
  flex: none;
  width: 70px; height: 70px;
  border-radius: 20px;
  background: var(--blush);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.card:hover .card-icon { transform: scale(1.05) rotate(-3deg); }
.card-icon img { width: 52px; height: 52px; object-fit: contain; }

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.card h3 { font-size: 1.22rem; line-height: 1.25; }
.card p { font-size: 0.95rem; color: var(--gray); margin: 0; }
.card p .lead {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.card-foot {
  margin-top: auto;
  padding-top: 8px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.card-link .arrow { transition: transform 0.25s ease; }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* ============================================================
   O MNĚ
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-media { position: relative; }
.about-media .photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}
.about-media .accent {
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px; height: 120px;
  border-radius: 26px;
  background: var(--green-soft);
  z-index: -1;
}
.about-media .accent-2 {
  position: absolute;
  inset: auto -16px -16px auto;
  width: 160px; height: 160px;
  border-radius: 32px;
  background:
    radial-gradient(rgba(4, 159, 130, 0.35) 2px, transparent 2px);
  background-size: 14px 14px;
  z-index: -1;
}

.about-copy h2 { margin-bottom: 20px; }
.about-copy p { margin-bottom: 16px; }
.about-copy .highlight { color: var(--green-dark); font-weight: 700; }

.about-points { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; }
.about-points .check {
  flex: none;
  width: 26px; height: 26px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 900;
}

/* Citát */
.quote-band {
  position: relative;
  background: linear-gradient(120deg, var(--green-deep) 0%, var(--green) 90%);
  color: var(--white);
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(100deg, rgba(0,0,0,0.55), transparent 60%);
  -webkit-mask-image: linear-gradient(100deg, rgba(0,0,0,0.55), transparent 60%);
}
.quote-inner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-mark { font-size: 4rem; line-height: 1; opacity: 0.5; font-family: Georgia, serif; }
.quote-inner blockquote {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 18px;
}
.quote-inner cite { font-style: normal; font-weight: 600; opacity: 0.85; }

/* ============================================================
   RECENZE
   ============================================================ */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
  margin: 48px auto 0;
  max-width: 860px;
}
.video-wrap iframe, .video-wrap .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-poster { cursor: pointer; background: none; padding: 0; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.video-poster .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.video-poster:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-poster .play::after {
  content: "";
  margin-left: 6px;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--green-dark);
}

/* Klikací hvězdičky v heru (scroll na recenze) */
.stars-link { cursor: pointer; text-decoration: none; transition: transform 0.2s ease; }
.stars-link:hover { transform: scale(1.06); }

/* Google odznáček na recenzní kartě */
.t-card.t-google { position: relative; }
.t-gbadge { position: absolute; top: 20px; right: 22px; width: 24px; height: 24px; }
.t-gbadge svg { width: 100%; height: 100%; display: block; }

.slider {
  position: relative;
  margin-top: 56px;
}
.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 22px;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }

.t-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(20, 45, 40, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-card .stars { font-size: 0.95rem; }
.t-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card.expanded p { -webkit-line-clamp: unset; display: block; }
.t-more {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--green-dark);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}
.t-person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-person img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--green-soft);
}
.t-person .name { font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.3; }
.t-person .role { font-size: 0.82rem; color: var(--gray); }

.slider-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.slider-btn:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 230px);
  gap: 18px;
  margin-top: 48px;
}
.gallery-grid a {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
/* Hlavní fotka (Robert u mikroskopu) — velká 2×2 */
.gallery-grid a:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
/* Portréty — vycentrovat na hlavu, ať se neuřezává */
.gallery-grid img.pos-top { object-position: center 18%; }
.gallery-grid a:hover img { transform: scale(1.05); }

/* Lightbox – náhled fotky s rozmazaným pozadím */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 33, 30, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lightbox.open { display: flex; animation: lbFade 0.2s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img {
  max-width: min(92vw, 900px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  object-fit: contain;
  animation: lbZoom 0.25s ease;
}
@keyframes lbZoom { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: none; } }

.lightbox-close {
  position: absolute;
  top: 18px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lightbox-close:hover { transform: rotate(90deg); background: #fff; }

body.lb-open { overflow: hidden; }

.gallery-item { cursor: zoom-in; }

@media (max-width: 480px) {
  .lightbox { padding: 14px; }
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
}

/* ============================================================
   MAPA + KONTAKT
   ============================================================ */
.map-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 48px;
}
.map-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 45, 40, 0.06);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-info h3 { font-size: 1.3rem; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-ico {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.info-row .lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); font-weight: 600; }
.info-row .val { font-weight: 700; color: var(--ink); }
.info-row .val a { color: var(--ink); }
.info-row .val a:hover { color: var(--green-dark); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   OBJEDNÁVKA / FORMULÁŘ
   ============================================================ */
.contact-section {
  position: relative;
  background:
    radial-gradient(900px 460px at 110% 0%, rgba(4, 159, 130, 0.12), transparent 60%),
    var(--cream);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-copy h2 { margin-bottom: 18px; }
.contact-copy .big-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-deep);
  margin: 18px 0;
}
.contact-copy .note { font-size: 0.92rem; color: var(--gray); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 42px 38px;
}
.form-card h3 { margin-bottom: 6px; }
.form-card .sub { font-size: 0.92rem; color: var(--gray); margin-bottom: 26px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.form-status { font-size: 0.9rem; font-weight: 600; margin-top: 14px; text-align: center; min-height: 1em; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #cf2e2e; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid rgba(20, 45, 40, 0.14);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(4, 159, 130, 0.14);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-card .btn { width: 100%; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 14px; text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 48px auto 0; display: grid; gap: 14px; }

details.faq-item {
  background: var(--white);
  border: 1px solid rgba(20, 45, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
details.faq-item[open] { box-shadow: var(--shadow-md); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--white);
}
.faq-item .faq-body { padding: 0 26px 22px; color: var(--gray); font-size: 0.95rem; }

/* Právní / textová stránka (GDPR) */
.legal-prose { max-width: 800px; margin: 40px auto 0; }
.legal-prose h3 { margin: 30px 0 10px; font-size: 1.15rem; }
.legal-prose p, .legal-prose li { margin-bottom: 12px; color: var(--ink-soft); }
.legal-prose ul { padding-left: 22px; margin-bottom: 16px; }
.legal-prose a { color: var(--green-dark); text-decoration: underline; }

/* ============================================================
   PŘEDNÁŠKY (stránka)
   ============================================================ */
.lecture {
  max-width: 820px;
  margin: 48px auto 0;
  background: var(--white);
  border: 1px solid rgba(20, 45, 40, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.lecture-head {
  background: linear-gradient(120deg, var(--green-deep), var(--green));
  color: var(--white);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.lecture-head .ico {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
}
.lecture-head h2 { color: var(--white); font-size: clamp(1.5rem, 3.2vw, 2rem); }
.lecture-head p { opacity: 0.9; font-size: 0.95rem; margin-top: 2px; }
.lecture-body { padding: 38px 40px 42px; }
.lecture-body p { margin-bottom: 16px; }
.lecture-body h3 { font-size: 1.2rem; margin: 26px 0 14px; }
.lecture-note { font-size: 0.9rem; color: var(--gray); font-style: italic; }
.lecture-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.lecture-more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: 48px auto 0;
}
@media (max-width: 640px) { .lecture-more { grid-template-columns: 1fr; } }

@media (max-width: 480px) {
  .lecture-head { padding: 26px 24px; }
  .lecture-body { padding: 28px 24px 32px; }
}

/* ============================================================
   CENÍK (stránka Služby)
   ============================================================ */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(4, 159, 130, 0.12), transparent 60%),
    var(--cream);
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--gray); }

.price-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(20, 45, 40, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card header {
  background: linear-gradient(120deg, var(--green-deep), var(--green));
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-card header .ico { font-size: 1.4rem; }
.price-card header h3 { color: var(--white); font-size: 1.15rem; }

.price-card ul { list-style: none; padding: 10px 28px 26px; }
.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(20, 45, 40, 0.12);
}
.price-card li:last-child { border-bottom: none; }
.price-item .name { font-weight: 700; color: var(--ink); font-size: 0.97rem; }
.price-item .time { display: block; font-size: 0.82rem; color: var(--gray); font-weight: 500; }
.price-item .desc { display: block; font-size: 0.82rem; color: var(--gray); font-weight: 500; max-width: 230px; }
.price { flex: none; font-weight: 800; color: var(--green-dark); white-space: nowrap; }

.cenik-cta {
  margin-top: 56px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cenik-cta h3 { font-size: 1.3rem; margin-bottom: 6px; }
.cenik-cta p { color: var(--gray); font-size: 0.95rem; }
.cenik-cta .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   PATIČKA
   ============================================================ */
.site-footer {
  background: #14211e;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; }
.footer-tagline { font-weight: 700; color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col .muted { font-size: 0.88rem; }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: var(--green); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.8); text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }

/* Plovoucí tlačítko zavolat (mobil) */
.call-fab {
  display: none;
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(4, 159, 130, 0.45);
  place-items: center;
  font-size: 1.4rem;
}

/* ============================================================
   RESPONSIVITA
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .slider-track { grid-auto-columns: calc((100% - 26px) / 2); }
  .price-groups { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .map-grid { gap: 40px; }
}

@media (max-width: 820px) {
  .section { padding: 70px 0; }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(20,45,40,0.06); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 44px; }
  .hero-copy { padding-bottom: 0; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  /* Hvězdičky nad textem, celé vycentrované — na mobilu sedí líp */
  .hero-proof {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-top: 26px;
  }
  .hero-proof .stars { font-size: 1.35rem; }
  .hero-proof p { max-width: 320px; }
  .hero-visual { margin-top: 26px; margin-bottom: 10px; }
  /* Štítek do levého horního (průhledného) rohu – nepřekrývá obličej, je za fotkou */
  .hero-badge { left: -4px; top: 4%; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 26px; padding: 56px 0; }

  .about-grid, .contact-grid, .map-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; margin: 0 auto; }

  .cards-grid { grid-template-columns: 1fr; }
  .slider-track { grid-auto-columns: 88%; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 180px; }
  .gallery-grid a:nth-child(1) { grid-column: 1 / 3; grid-row: auto; grid-auto-rows: 180px; }

  .price-groups { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .call-fab { display: grid; }
}

@media (max-width: 480px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 2.1rem; }
  .btn { padding: 14px 26px; }
  .form-card { padding: 32px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat .num { font-size: 1.5rem; }
}
