/* =========================================================
   Masáže Monika ČB — sdílený design systém
   Bílo-zelené, klidné, organické, jemný ženský styl
   ========================================================= */

/* Fonty se načítají z <head> jednotlivých stránek (preconnect + preload) kvůli rychlosti. */

:root {
  /* Barevná paleta — šalvějová zelená + teplá bílá */
  --green:        #6f8f6a;
  --green-deep:   #4a6147;
  --green-soft:   #88a380;
  --green-tint:   #eef2ea;
  --green-tint-2: #f6f9f3;
  --cream:        #faf8f2;
  --ink:          #2f332c;
  --muted:        #6e7368;
  --line:         #e5e8df;
  --white:        #ffffff;
  --gold:         #c2a36b;

  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow:    0 18px 50px -28px rgba(60, 78, 56, 0.45);
  --shadow-sm: 0 8px 28px -18px rgba(60, 78, 56, 0.40);

  --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--green-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.12;
  margin: 0 0 0.4em;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(79, 125, 94, 0.7);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-ghost {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px -14px rgba(79, 125, 94, 0.7);
}
.btn-ghost:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-lg { font-size: 16px; padding: 15px 30px; }

/* Velké hlavní CTA — sjednocená velikost se zbytkem */
.btn-hero {
  font-size: 16px;
  padding: 15px 30px;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ---------- Eyebrow / štítek ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--green-soft);
}

/* =========================================================
   HLAVIČKA
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(60,78,56,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo {
  height: 84px; width: auto;
  object-fit: contain;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 23px;
  color: var(--green-deep);
  line-height: 1.05;
  font-weight: 500;
}
.brand-text strong { font-weight: 600; display: block; font-size: 0.78em; letter-spacing: .02em; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 9px 11px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--green-deep); background: var(--green-tint); }
.site-nav a[aria-current="page"] { color: var(--green-deep); }
.site-nav a[aria-current="page"]:not(.btn) {
  background: var(--green-tint);
}
.nav-reserve { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--green-deep);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   SEKCE / OBECNÉ
   ========================================================= */
section { position: relative; }
.section { padding: 62px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--green-tint-2); }
.section-green {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(120% 90% at 82% 6%, rgba(136,163,128,0.42) 0%, rgba(136,163,128,0) 52%),
    radial-gradient(95% 85% at 12% 100%, rgba(40,53,38,0.55) 0%, rgba(40,53,38,0) 55%),
    linear-gradient(150deg, #54704e 0%, var(--green-deep) 48%, #3a4d36 100%);
  overflow: hidden;
}
/* Jemný botanický motiv lístků */
.section-green::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%; right: -60px;
  width: 420px; height: 420px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.1' stroke-linecap='round' opacity='0.5'%3E%3Cpath d='M100 196 C100 150 100 60 100 16'/%3E%3Cpath d='M100 150 C70 140 50 118 44 86 C78 92 98 116 100 150 Z'/%3E%3Cpath d='M100 150 C130 140 150 118 156 86 C122 92 102 116 100 150 Z'/%3E%3Cpath d='M100 104 C74 96 58 76 53 48 C84 54 99 76 100 104 Z'/%3E%3Cpath d='M100 104 C126 96 142 76 147 48 C116 54 101 76 100 104 Z'/%3E%3Cpath d='M100 64 C80 58 68 42 64 22 C88 27 99 43 100 64 Z'/%3E%3Cpath d='M100 64 C120 58 132 42 136 22 C112 27 101 43 100 64 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
  pointer-events: none;
}
.section-green > * { position: relative; z-index: 1; }
.section-green h1, .section-green h2, .section-green h3 { color: #fff; }
.section-green .eyebrow { color: #d7e6cc; }
.section-green .eyebrow::before { background: rgba(255,255,255,.5); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); }
.section-head p { color: var(--muted); font-size: 18px; }

.lede { font-size: 19px; color: var(--muted); }

/* =========================================================
   HERO (úvodní stránka)
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100dvh - 40px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 38%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(102deg, rgba(34,48,32,0.82) 0%, rgba(34,48,32,0.55) 32%, rgba(34,48,32,0.18) 56%, rgba(34,48,32,0.04) 78%),
    linear-gradient(to top, rgba(34,48,32,0.55) 0%, rgba(34,48,32,0.12) 26%, rgba(34,48,32,0) 50%);
}
/* Jemné rozmazání spodního okraje fotky jako u Pašinky.
   Rozmazaná kopie fotky (filter: blur) místo backdrop-filter,
   aby se na iOS vykreslila hned, ne až po scrollu. */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background-image: url('uploads/hero.jpg');
  background-size: cover;
  background-position: center 38%;
  filter: blur(7px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 8%, transparent 20%);
  mask-image: linear-gradient(to top, #000 0%, #000 8%, transparent 20%);
  pointer-events: none;
}
/* Na větších obrazovkách (počítač) hero fotku nerozmazávat */
@media (min-width: 861px) {
  .hero::before { display: none; }
}
.hero-inner { position: relative; z-index: 3; padding-bottom: 76px; padding-top: 80px; }
.hero-inner .eyebrow { color: #dceacf; }
.hero-inner .eyebrow::before { display: none; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.6vw, 78px);
  font-weight: 500;
  max-width: 16ch;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(30,42,28,.4);
}
.hero p.hero-sub {
  font-size: clamp(18px, 2.2vw, 23px);
  max-width: 46ch;
  margin-bottom: 36px;
  color: rgba(255,255,255,.94);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.85); background: transparent; }
.hero .btn-ghost:hover { background: rgba(255,255,255,.16); }

/* ---------- Hero dvousloupcový (text + celá fotka) ---------- */
.hero-band {
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--green-tint-2) 60%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
  min-height: clamp(540px, 76vh, 720px);
  padding: 64px 0;
}
.hero-copy .eyebrow { color: var(--green); }
.hero-copy .eyebrow::before { background: var(--green-soft); }
.hero-band h1 {
  color: var(--green-deep);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 500;
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero-band .hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 36px;
}
.hero-band .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-photo img {
  width: 100%;
  height: clamp(440px, 66vh, 640px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* =========================================================
   RYCHLÉ ODKAZY (3 kartičky)
   ========================================================= */
.quicklinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.qcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-soft); }
.qcard .qicon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--green-tint);
  color: var(--green-deep);
}
.qcard .qicon svg { width: 28px; height: 28px; }
.qcard h3 { font-size: 26px; margin: 0; }
.qcard p { color: var(--muted); font-size: 15.5px; margin: 0; }
.qcard .qmore {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); font-weight: 700; font-size: 15px;
}
.qcard .qmore svg { width: 16px; height: 16px; transition: transform .25s; }
.qcard:hover .qmore svg { transform: translateX(4px); }

/* =========================================================
   PODSTRÁNKOVÝ BANNER
   ========================================================= */
.page-banner {
  background: var(--green-tint);
  padding: 76px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { font-size: clamp(40px, 6vw, 66px); margin-bottom: 14px; }
.page-banner p { color: var(--muted); font-size: 19px; max-width: 60ch; margin: 0 auto; }
.page-banner p.banner-sub { font-size: 15px; max-width: 66ch; margin-top: 12px; opacity: .82; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--green); text-decoration: none; }

/* =========================================================
   O MNĚ — split layout
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.split.flip .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-body h2 { font-size: clamp(30px, 3.6vw, 44px); }
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.prose h3 { font-size: 27px; margin-top: 1.6em; color: var(--green-deep); }
.prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.3em; }
.prose ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}
.prose ul li::before {
  content: "";
  position: absolute; left: 4px; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-soft);
}
.prose blockquote {
  margin: 1.6em 0;
  padding: 26px 30px;
  background: var(--green-tint-2);
  border-left: 3px solid var(--green-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 22px;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.45;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-strip img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.photo-strip.atmo-strip img { aspect-ratio: auto; height: auto; max-height: 340px; object-fit: cover; }

/* =========================================================
   QUOTE BAND
   ========================================================= */
.quote-band { text-align: center; padding: 96px 0; }
.quote-band::before {
  content: "";
  display: block;
  width: 44px; height: 44px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7e6cc' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V8'/%3E%3Cpath d='M12 13C9 13 6.5 11 6 7.5C9.5 8 12 10 12 13Z'/%3E%3Cpath d='M12 13C15 13 17.5 11 18 7.5C14.5 8 12 10 12 13Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .9;
}
/* Velká jemná uvozovka v pozadí */
.quote-band::after {
  content: "\201C";
  position: absolute;
  z-index: 0;
  top: 0.02em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: clamp(180px, 30vw, 320px);
  line-height: 1;
  color: #fff;
  opacity: 0.07;
  pointer-events: none;
}
.quote-band .q {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-style: italic;
  line-height: 1.32;
  max-width: 22ch;
  margin: 0 auto;
}
.quote-band .qauthor {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
}
.quote-band .qauthor::before,
.quote-band .qauthor::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255,255,255,.45);
}

/* =========================================================
   SLUŽBY & CENÍK
   ========================================================= */
.services { display: flex; flex-direction: column; gap: 18px; max-width: 860px; margin: 0 auto; }
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 30px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 34px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-row:hover { border-color: var(--green-soft); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-row .s-name { font-family: var(--font-head); font-size: 27px; color: var(--green-deep); margin: 0; }
.service-row .s-dur { color: var(--muted); font-size: 15px; font-weight: 600; margin-top: 4px; display: inline-flex; align-items: center; gap: 7px; }
.service-row .s-dur svg { width: 15px; height: 15px; }
.service-row .s-price {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.price-note { text-align: center; color: var(--muted); font-size: 15px; margin-top: 26px; }

/* Expandovatelný popis služby */
details.service-row { display: block; padding: 0; }
details.service-row > summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px 30px;
  padding: 28px 34px;
  list-style: none;
  cursor: pointer;
}
details.service-row > summary::-webkit-details-marker,
details.service-row > summary::marker { display: none; content: ''; }
details.service-row .chev { display: inline-flex; color: var(--green-soft); transition: transform .2s; }
details.service-row .chev svg { width: 26px; height: 26px; }
details.service-row[open] .chev { transform: rotate(180deg); }
.service-desc { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease; }
details.service-row[open] .service-desc { grid-template-rows: 1fr; }
.service-desc > div { overflow: hidden; min-height: 0; padding: 0 34px 22px; border-top: 1px solid var(--line); padding-top: 14px; color: var(--muted); line-height: 1.65; font-size: 15px; }
@media (max-width: 560px) {
  details.service-row > summary { padding: 20px 22px; }
}

/* Techniky — chips/grid */
.techniques { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.tech-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.tech-item .tdot {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.tech-item .tdot svg { width: 19px; height: 19px; }
.tech-item p { margin: 0; font-size: 15.5px; font-weight: 600; color: var(--ink); }

/* =========================================================
   STORNO — karty
   ========================================================= */
.storno-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 18px; }
.storno-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px;
}
.storno-card h4 { font-size: 21px; margin-bottom: 8px; }
.storno-card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.storno-card .tag {
  display: inline-block;
  font-weight: 700; font-size: 13px; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.tag-free { background: var(--green-tint); color: var(--green-deep); }
.tag-warn { background: #fcefe1; color: #b06a26; }
.tag-stop { background: #fae3e0; color: #b04434; }

/* =========================================================
   FAQ — accordion
   ========================================================= */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none; width: 26px; height: 26px;
  border-radius: 50%; background: var(--green-tint);
  display: grid; place-items: center;
  transition: transform .3s;
}
.faq summary .chev svg { width: 14px; height: 14px; color: var(--green-deep); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 26px 24px; color: var(--muted); }
.faq .faq-body p { margin: 0; }

/* =========================================================
   POUKAZY — QR
   ========================================================= */
.gift-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 38px;
  box-shadow: var(--shadow-sm);
}
.gift-info .acc {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: .04em;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}
.qr-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.qr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.qr-card img { width: 100%; border-radius: 10px; aspect-ratio: 1; object-fit: contain; background: #fff; }
.qr-card .qr-empty { width: 100%; aspect-ratio: 1; border-radius: 10px; background: var(--green-tint); border: 1px dashed var(--green-soft); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--green-soft); font-size: 14px; font-weight: 600; line-height: 1.4; }
.qr-card .qr-amount { font-family: var(--font-head); font-size: 24px; color: var(--green); margin-top: 12px; font-weight: 600; }

/* =========================================================
   RECENZE
   ========================================================= */
.review-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; max-width: 880px; margin: 0 auto; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 20px; }
.review-card h3 { margin: 0; font-size: 27px; }
.review-card p { color: var(--muted); margin: 0; font-size: 15.5px; }
.review-card img.qr { width: 130px; height: 130px; border-radius: 12px; border: 1px solid var(--line); margin-top: auto; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: stretch; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px;
  box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .cicon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-tint); color: var(--green-deep);
  display: grid; place-items: center;
}
.contact-list .cicon svg { width: 20px; height: 20px; }
.contact-list .clabel { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-list .cnote { display: block; margin-top: 6px; font-size: 13.5px; line-height: 1.55; color: var(--muted); font-style: italic; max-width: 42ch; }
.contact-list a, .contact-list .cval { color: var(--ink); text-decoration: none; font-size: 17px; font-weight: 600; }
.contact-list a:hover { color: var(--green-deep); }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  background: var(--green-tint); color: var(--green-deep);
  font-weight: 700; font-size: 15px;
  padding: 12px 20px; border-radius: 999px;
  transition: background .25s, transform .25s;
}
.social-btn:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(32px, 4.5vw, 50px); color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.86); font-size: 19px; max-width: 50ch; margin: 0 auto 32px; }

/* =========================================================
   PATIČKA
   ========================================================= */
.site-footer {
  background: #2a3526;
  color: rgba(255,255,255,.78);
  padding: 72px 0 32px;
  font-size: 15px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-text { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 34ch; margin-top: 16px; }
.footer-brand-icon { height: 44px; width: 44px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.footer-brand-name { font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.74); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 26px; color: rgba(255,255,255,.55); font-size: 13.5px; }
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; }

/* =========================================================
   FOTOGALERIE
   ========================================================= */
.gallery { columns: 3; column-gap: 20px; }
.gallery .gitem {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  display: block;
  position: relative;
  background: var(--green-tint);
}
.gallery .gitem img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.gallery .gitem:hover img { transform: scale(1.05); }
.gallery .gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,56,38,.18), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.gallery .gitem:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(28, 38, 26, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
}
.lightbox .lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.28); }

/* ---------- Složky galerie ---------- */
.folder-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; margin-bottom: 42px; }
.folder-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; text-align: left; width: 100%; padding: 0;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.folder-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.folder-card > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.folder-no-img { background: var(--green-tint); aspect-ratio: 4/3; }
.folder-card-body { padding: 16px 18px; }
.folder-card-title { font-size: 17px; font-weight: 700; color: var(--green-deep); display: block; }
.folder-card-count { font-size: 12.5px; color: var(--green); font-weight: 600; margin-top: 3px; display: block; }
.folder-card-desc { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }
.folder-header { margin-bottom: 24px; }
.folder-title { font-size: 26px; color: var(--green-deep); margin: 12px 0 0; }

/* =========================================================
   AKTUALITY
   ========================================================= */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }
.news-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-media { aspect-ratio: 16/10; overflow: hidden; background: var(--green-tint); }
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.news-date {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.news-date svg { width: 15px; height: 15px; }
.news-card h3 { font-size: 25px; margin: 0 0 10px; }
.news-card p { color: var(--muted); font-size: 15.5px; margin: 0 0 18px; }
.news-text { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; margin: 0 0 8px; }
.news-text p { margin: 0; color: var(--muted); font-size: 15.5px; }
.news-text.expanded { display: block; }
.news-expand { background: none; border: none; padding: 0; margin-bottom: 12px; color: var(--green); cursor: pointer; font: 700 14px/1 var(--font-body); display: block; }
.news-expand:hover { color: var(--green-deep); }
.news-card .news-more { margin-top: auto; color: var(--green-deep); font-weight: 700; font-size: 15px; }

/* =========================================================
   COOKIE LIŠTA (GDPR)
   ========================================================= */
.cookie-bar {
  position: fixed;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 200;
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(40,56,38,.6);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  transform: translateY(160%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: 14.5px; color: var(--muted); flex: 1 1 300px; }
.cookie-bar p strong { color: var(--ink); }
.cookie-bar a { color: var(--green-deep); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar .btn { padding: 11px 22px; font-size: 14px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split.flip .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 14px 16px; font-size: 17px; border-radius: 12px; }
  .nav-reserve { margin: 8px 0 0; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 44px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; min-height: 0; padding: 40px 0 52px; }
  .hero-photo { order: -1; }
  .hero-photo img { height: clamp(300px, 52vh, 420px); }
  .quicklinks { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .quicklinks .qcard { padding: 18px 10px; align-items: center; text-align: center; gap: 10px; }
  .quicklinks .qcard .qicon { width: 44px; height: 44px; border-radius: 12px; }
  .quicklinks .qcard .qicon svg { width: 22px; height: 22px; }
  .quicklinks .qcard h3 { font-size: 15px; line-height: 1.15; }
  .quicklinks .qcard p { display: none; }
  .quicklinks .qcard .qmore { margin-top: 2px; gap: 0; font-size: 0; }
  .quicklinks .qcard .qmore svg { width: 20px; height: 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
  .hero { min-height: calc(100dvh - 24px); align-items: center; }
  .hero-inner { padding-top: 48px; padding-bottom: 48px; text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero h1, .hero p.hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-bg { background-position: center 38%; }
  .hero::after {
    background: linear-gradient(to top, rgba(34,48,32,0.40) 0%, rgba(34,48,32,0.55) 30%, rgba(34,48,32,0.55) 64%, rgba(34,48,32,0.44) 100%);
  }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .service-row { padding: 20px 22px; }
  .service-row .s-price { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: auto; }
  .btn-hero { padding: 15px 30px; font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .cookie-bar { padding: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .gallery { columns: 1; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Jemný nástup obsahu */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Hover efekty a přechody ---------- */
.media-frame, .gitem, .news-media, .qcard, .split-media .media-frame { overflow: hidden; }
.media-frame img, .gitem img, .news-media img {
  transition: transform .55s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}
.media-frame:hover img, .gitem:hover img, .news-card:hover .news-media img { transform: scale(1.06); }

.service-row, .tech-item, .storno-card, .news-card, .qr-card, .review-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.service-row:hover, .tech-item:hover, .storno-card:hover, .news-card:hover, .qr-card:hover, .review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-row:hover { border-color: var(--green-soft); }

.gitem { cursor: pointer; position: relative; }
.gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,53,38,.32), rgba(40,53,38,0) 55%);
  opacity: 0; transition: opacity .3s ease;
}
.gitem:hover::after { opacity: 1; }

.contact-list a, .footer-col a, .breadcrumb a, .qmore { transition: color .2s ease, gap .2s ease; }
.faq summary { transition: color .2s ease; }
.faq summary:hover { color: var(--green); }
.qcard:hover .qmore { gap: 12px; }
.social-btn { transition: transform .2s ease, background .2s ease, color .2s ease; }
.social-btn:hover { transform: translateY(-2px); }

.btn { will-change: transform; }
.btn:active { transform: translateY(1px) scale(.99); }

.site-nav a { transition: color .2s ease, background .2s ease; }
.brand-logo { transition: transform .4s ease; }
.brand:hover .brand-logo { transform: scale(1.05); }

/* Kontaktní formulář */
.contact-form { background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }
.cf-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { margin-bottom: 16px; display:flex; flex-direction:column; }
.cf-field label { font-weight:700; font-size:14px; color: var(--green-deep); margin-bottom:6px; }
.contact-form input, .contact-form textarea { width:100%; border:1.5px solid var(--line); border-radius: var(--radius-sm); padding:12px 14px; font-family:inherit; font-size:16px; color: var(--ink); background: var(--cream); }
.contact-form input:focus, .contact-form textarea:focus { outline:none; border-color: var(--green-soft); box-shadow: 0 0 0 3px rgba(136,163,128,.18); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.cf-status { margin: 14px 0 0; font-weight: 600; }
.cf-status.ok { color: var(--green-deep); }
.cf-status.err { color: #b4453a; }
.cf-field .req { color: #b4453a; }
.cf-note { margin: 10px 0 0; font-size: 13px; color: var(--muted); }
.contact-form .input-err { border-color: #b4453a !important; box-shadow: 0 0 0 3px rgba(180, 69, 58, .12); }
.cf-captcha-wrap { align-items: flex-start; }
@media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } }

/* ---------- Náběhová animace při načtení webu ---------- */
@media (prefers-reduced-motion: no-preference) {
  .site-header { animation: hdrDown .6s ease both; }
  .hero-bg { animation: heroZoom 1.8s cubic-bezier(.2,.6,.2,1) both; }
  .hero-inner > * { opacity: 0; animation: heroUp .8s ease forwards; }
  .hero-inner > *:nth-child(1) { animation-delay: .20s; }
  .hero-inner > *:nth-child(2) { animation-delay: .34s; }
  .hero-inner > *:nth-child(3) { animation-delay: .48s; }
  .hero-inner > *:nth-child(4) { animation-delay: .62s; }
  .page-banner .wrap > * { opacity: 0; animation: heroUp .7s ease forwards; }
  .page-banner .breadcrumb { animation-delay: .10s; }
  .page-banner h1 { animation-delay: .22s; }
  .page-banner > .wrap > p { animation-delay: .34s; }
}
@keyframes hdrDown { from { transform: translateY(-100%); } to { transform: none; } }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Indikátor načítání (galerie aj.) */
.cms-loading{display:flex;align-items:center;justify-content:center;gap:10px;color:var(--muted);font-weight:600;padding:40px 0}
.cms-spin{width:18px;height:18px;border:2px solid var(--green-tint);border-top-color:var(--green);border-radius:50%;animation:mmcb-spin .7s linear infinite;display:inline-block}
@keyframes mmcb-spin{to{transform:rotate(360deg)}}

/* ---------- Responzivní a optimalizační doladění ---------- */
html { overflow-x: hidden; }
body { overflow-wrap: break-word; }
.footer-col a, .contact-list a, a[href^="mailto:"] { overflow-wrap: anywhere; }
/* Plynulejší vykreslování dlouhých sekcí mimo viewport */
.site-footer, .map-frame { content-visibility: auto; contain-intrinsic-size: 600px; }
/* Obrázky v kartách nikdy nepřetečou */
.qr-card img, .news-media img, .gitem img, .media-frame img { width: 100%; }

@media (max-width: 400px) {
  .adm-title, .hero h1 { letter-spacing: 0; }
  .wrap { padding: 0 16px; }
}

/* Úvod – přepínatelná galerie (carousel) */
.photo-carousel { position: relative; }
.photo-carousel .pc-track { display: flex; transition: transform .45s ease; }
.photo-carousel .pc-track img { width: 100%; flex: 0 0 100%; display: block; }
.photo-carousel:hover .pc-track img { transform: none; } /* potlačí hover zoom uvnitř carouselu */
.pc-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.85); color: var(--green-deep);
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: background .2s;
}
.pc-nav:hover { background: #fff; }
.pc-prev { left: 12px; }
.pc-next { right: 12px; }
.pc-dots { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: 8px; }
.pc-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,.55); cursor: pointer; transition: background .2s; }
.pc-dot.active { background: #fff; }

/* Recenze – slider */
.review-carousel { position: relative; max-width: 720px; margin: 0 auto; padding: 0 50px; }
.review-carousel .rc-viewport { overflow: hidden; }
.review-carousel .rc-track { display: flex; transition: transform .45s ease; }
.review-carousel .rc-slide { flex: 0 0 100%; box-sizing: border-box; padding: 4px; }
.review-carousel .rc-slide .review-card { min-height: 100%; }
.review-carousel .pc-prev { left: 0; }
.review-carousel .pc-next { right: 0; }
.review-carousel .pc-dots { position: static; margin-top: 20px; }
.review-carousel .pc-dot { background: var(--green-soft); }
.review-carousel .pc-dot.active { background: var(--green); }
@media (max-width: 600px) {
  .review-carousel { padding: 0 38px; }
  .review-carousel .pc-nav { width: 36px; height: 36px; font-size: 22px; }
}

/* Recenze – souhrn hodnocení (jako Google) */
.rv-summary { text-align: center; max-width: 520px; margin: 0 auto 38px; }
.rv-score { font-family: var(--font-head); font-weight: 600; font-size: 68px; line-height: 1; color: var(--green-deep); }
.rv-bigstars .stars { color: var(--gold); font-size: 26px; letter-spacing: 4px; }
.rv-count { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.rv-all { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--green-deep); text-decoration: none; }
.rv-all:hover { text-decoration: underline; }

/* Recenze – karta v slideru */
.review-carousel .rv-text { font-style: italic; }
.rv-foot { display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); width: 100%; }
.rv-ava { width: 44px; height: 44px; border-radius: 12px; background: var(--green); color: #fff;
  font-weight: 800; font-size: 15px; letter-spacing: .04em; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; }
.rv-who { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.rv-who strong { color: var(--ink); font-size: 15px; }
.rv-sub { font-size: 13px; color: var(--muted); }
