/* ============================================================
   Bureš VTP — hlavní styly
   Barvy: petrolejová #0E3A4C · oranžová #E8762D · šedomodrá #5A6B73
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* aby kotvy nezmizely pod sticky hlavičkou */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: #fff;
  color: #1E2A30;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* přeskočení na obsah (přístupnost) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: #0E3A4C;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

a { color: #E8762D; text-decoration: none; }
a:hover { color: #d5651f; }

img { max-width: 100%; }

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

/* ---------- Animace ---------- */
@keyframes heroFade {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kenBurns {
  from { opacity: 1; transform: scale(1.09); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroItem {
  from { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes shine {
  from { transform: translateX(-130%) skewX(-18deg); }
  to   { transform: translateX(260%) skewX(-18deg); }
}

/* ---------- Scroll reveal (objevování při scrollu) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* směrové varianty */
.reveal--left  { transform: translateX(-42px); }
.reveal--right { transform: translateX(42px); }
.reveal--zoom  { transform: scale(.9); }
.reveal--fade  { transform: none; }
.reveal--rise  { transform: translateY(46px); }
.reveal--blur  { filter: blur(8px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.reveal--blur.in { filter: blur(0); }

/* výraznější varianty */
/* pop — nabíhá se zvětšením a lehkým přeskočením (bounce) */
.reveal--pop {
  transform: scale(.8) translateY(24px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.34,1.45,.5,1);
}
/* mask — „stěrka": obsah se odkryje zleva doprava (elegantní u nadpisů) */
.reveal--mask {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .85s cubic-bezier(.76,0,.24,1);
}
.reveal--mask.in { clip-path: inset(0 0 0 0); }
/* flip — jemné otočení kolem osy X */
.reveal--flip {
  transform: perspective(900px) rotateX(14deg) translateY(30px);
  transform-origin: top center;
  transition: opacity .7s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

/* stagger — postupné nabíhání sourozenců */
.reveal:nth-child(1) { --reveal-delay: 0s; }
.reveal:nth-child(2) { --reveal-delay: .08s; }
.reveal:nth-child(3) { --reveal-delay: .16s; }
.reveal:nth-child(4) { --reveal-delay: .24s; }
.reveal:nth-child(5) { --reveal-delay: .32s; }
.reveal:nth-child(6) { --reveal-delay: .40s; }
.reveal:nth-child(7) { --reveal-delay: .48s; }
.reveal:nth-child(8) { --reveal-delay: .56s; }

/* vypnout pohyb pro uživatele, kteří ho nechtějí */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal--zoom, .reveal--rise,
  .reveal--blur, .reveal--pop, .reveal--mask, .reveal--flip {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .site-header, .hero__content, .about-photo__badge, .logo__mark img { animation: none !important; }
}

/* ---------- Mikrointerakce a vstupní animace ---------- */
.site-header { animation: headerDrop .6s cubic-bezier(.2,.7,.2,1) both; }

/* tlačítka — zvednutí + prosvětlení */
.btn { transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, background .2s ease; position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
/* světelný odlesk přejíždějící přes primární tlačítko při hoveru */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}
.btn--primary:hover::after { animation: shine .8s ease; }

/* logo — jemné pohoupání značky při hoveru */
.logo:hover .logo__mark img { animation: floaty 1.2s ease-in-out infinite; }
.logo__mark { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.logo:hover .logo__mark { transform: rotate(-4deg) scale(1.05); }

/* odznak na fotce „15+ let" se jemně vznáší */
.about-photo__badge { animation: floaty 4s ease-in-out infinite; }

/* kontaktní řádky a karty — zvednutí */
.contact-item, .contact-card { transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease, border-color .22s ease; }
.contact-item:hover, a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(14,58,76,.14); }
.contact-item__ico, .contact-card__ico { transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.contact-item:hover .contact-item__ico,
a.contact-card:hover .contact-card__ico { transform: scale(1.12) rotate(-6deg); }

/* města — chipy poskočí a zbarví se */
.chip { transition: transform .2s cubic-bezier(.2,.7,.2,1), background .2s ease, color .2s ease; cursor: default; }
.chip:hover { transform: translateY(-3px) scale(1.05); background: #0E3A4C; color: #fff; }
.chip:hover::before { background: #F6A96B; }

/* benefit karty — zvednutí + ikona */
.benefit-card { transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(14,58,76,.12); }
.benefit-card__ico { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.benefit-card:hover .benefit-card__ico { transform: scale(1.12) rotate(-5deg); }

/* kroky „jak to probíhá" — číslo povyskočí */
.step__n { transition: transform .3s cubic-bezier(.2,.7,.2,1), color .3s ease; }
.step:hover .step__n { transform: translateY(-4px) scale(1.06); }

/* animované podtržení nadpisů sekcí */
.h2 { position: relative; }
.section-head .h2::after,
.gal-head .h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: #E8762D;
  transition: width .6s cubic-bezier(.2,.7,.2,1) .1s;
}
.section-head { text-align: center; }
.section-head .h2::after { margin-left: auto; margin-right: auto; }
.reveal.in .h2::after,
.section-head.in .h2::after,
.gal-head.in .h2::after { width: 64px; }

/* patička — odkazy se posunou při hoveru */
.site-footer__links a { transition: color .2s ease, transform .2s ease; display: inline-block; }
.site-footer__links a:hover { transform: translateX(4px); }

/* značky (loga) — zjemnění a zvětšení */
.brands__item { transition: transform .25s ease, opacity .25s ease; opacity: .85; }
.brands__item:hover { transform: scale(1.08); opacity: 1; }

/* mapa v kontaktu — jemné zvětšení rámečku */
.map-embed { transition: box-shadow .3s ease, transform .3s ease; }
.map-embed:hover { box-shadow: 0 18px 40px rgba(14,58,76,.16); }

/* ---------- Typografie sekcí ---------- */
.kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E8762D;
  margin-bottom: 16px;
}
.kicker--light { color: #F6A96B; }

.h2 {
  margin: 0 0 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: #0E3A4C;
  text-wrap: balance;
}

.lead { margin: 0; font-size: 17px; line-height: 1.65; color: #5A6B73; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 56px;
  padding: 0 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: #E8762D;
  color: #fff;
  box-shadow: 0 10px 26px rgba(232,118,45,.34);
}
.btn--primary:hover { background: #d5651f; color: #fff; }
.btn--ghost-light {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 0 26px;
}
.btn--ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn--outline-dark {
  height: 50px;
  padding: 0 24px;
  background: transparent;
  border: 1.5px solid #0E3A4C;
  color: #0E3A4C;
  font-size: 15px;
}
.btn--outline-dark:hover { background: #0E3A4C; color: #fff; }

.btn-arrow { transition: transform .22s ease; }
button:hover .btn-arrow, a:hover .btn-arrow { transform: translateX(5px); }

/* ============================================================
   HLAVIČKA
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(14,58,76,.09);
}
.site-header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---------- Domovská stránka: průhledný navbar přes hero, bílý po scrollu ---------- */
.logo__name, .logo__name span, .logo__tag, .nav-link, .nav-toggle {
  transition: color .35s ease, background .35s ease;
}
.logo__mark { transition: transform .25s cubic-bezier(.2,.7,.2,1), background .35s ease; }

.page-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(9,38,50,.55), rgba(9,38,50,0));
  backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.page-home .site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(14,58,76,.09);
  box-shadow: 0 6px 20px rgba(14,58,76,.08);
}
/* průhledný stav — bílé logo a hamburger (přes tmavý hero) */
.page-home .site-header:not(.scrolled) .logo__name { color: #fff; }
.page-home .site-header:not(.scrolled) .logo__name span { color: #F6A96B; }
.page-home .site-header:not(.scrolled) .logo__tag { color: rgba(255,255,255,.72); }
.page-home .site-header:not(.scrolled) .logo__mark { background: rgba(255,255,255,.16); }
.page-home .site-header:not(.scrolled) .nav-toggle { color: #fff; }
/* horizontální odkazy bílé jen na desktopu (mobilní menu je bílý panel) */
@media (min-width: 761px) {
  .page-home .site-header:not(.scrolled) .nav-link { color: #fff; }
  .page-home .site-header:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,.14); color: #fff; }
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #0E3A4C;
}
.logo__mark img { display: block; width: 30px; height: 30px; }
.logo__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.logo__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0E3A4C;
  letter-spacing: -.01em;
}
.logo__name span { color: #E8762D; }
.logo__tag { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; color: #5A6B73; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0E3A4C;
  cursor: pointer;
  border-radius: 7px;
  text-decoration: none;
}
.nav-link:hover { background: #EEF3F5; color: #0E3A4C; }

/* rozbalovací menu služeb */
.dropdown { position: relative; }
.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: #fff;
  border: 1px solid rgba(14,58,76,.1);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(14,58,76,.16);
  padding: 8px;
  animation: dropdownIn .18s ease;
}
/* animace zachovává vycentrování (translateX(-50%)), aby menu neposkočilo */
@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown.open .dropdown__menu { display: block; }
/* neviditelný můstek přes mezeru mezi tlačítkem a menu — menu nezmizí při přejíždění myší */
.dropdown__menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  text-align: left;
  text-decoration: none;
}
.dropdown__item:hover { background: #EEF3F5; }
.dropdown__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(232,118,45,.1);
  flex: none;
}
.dropdown__name {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #0E3A4C;
}
.dropdown__tiny { display: block; font-size: 12px; color: #5A6B73; margin-top: 2px; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 20px;
  background: #E8762D;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(232,118,45,.26);
  white-space: nowrap;
}
.header-phone:hover { background: #d5651f; color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0E3A4C;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;   /* fallback pro starší prohlížeče */
  min-height: 100dvh;  /* dynamická výška — plná obrazovka na mobilu i desktopu */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0E3A4C;
}
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}
/* aktivní slide: crossfade + jemný pomalý Ken Burns pohyb pozadí */
.hero__slide-bg.active { opacity: 1; animation: kenBurns 10s ease-out both; }
.hero__inner { position: relative; width: 100%; padding-top: 96px; padding-bottom: 96px; }
.hero__content { max-width: 720px; }

/* postupné nabíhání textu při přepnutí slidu (skrývání aktivuje až JS třídou .hero-anim,
   aby při vypnutém JS zůstal text vidět) */
.hero__content.hero-anim > * { opacity: 0; }
.hero__content.hero-anim.play > * { animation: heroItem .7s cubic-bezier(.2,.7,.2,1) both; }
.hero__content.hero-anim.play > *:nth-child(1) { animation-delay: .05s; }
.hero__content.hero-anim.play > *:nth-child(2) { animation-delay: .16s; }
.hero__content.hero-anim.play > *:nth-child(3) { animation-delay: .27s; }
.hero__content.hero-anim.play > *:nth-child(4) { animation-delay: .38s; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide-bg, .hero__slide-bg.active { animation: none !important; transform: none !important; }
  .hero__content.hero-anim > * { opacity: 1 !important; }
  .hero__content.hero-anim.play > * { animation: none !important; }
}
.hero__kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #F6A96B;
  margin-bottom: 20px;
}
.hero__title {
  margin: 0 0 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: balance;
}
.hero__text {
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  max-width: 600px;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero__arrow:hover { background: rgba(255,255,255,.24); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

.hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
  z-index: 2;
}
.hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,.5);
  transition: all .25s ease;
}
.hero__dot.active { width: 30px; background: #E8762D; }

/* ============================================================
   SEKCE — O NÁS
   ============================================================ */
.section { padding-top: 100px; padding-bottom: 100px; }
.section--gray { background: #EEF3F5; }
.section--dark { background: #0E3A4C; }

/* sekce s fotkou v pozadí (přes gradient) */
.section-photo { position: relative; overflow: hidden; }
.section-photo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.section-photo > .container { position: relative; z-index: 1; }

/* sekce oblasti působnosti na tmavé fotce */
.cities--photo .h2 { color: #fff; }
.cities--photo .lead { color: rgba(255,255,255,.82); }
.cities--photo .cities__note { color: #9FD3A2; }
.cities--photo .chip {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(2px);
}
.cities--photo .chip:hover { background: #E8762D; color: #fff; border-color: #E8762D; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid .h2 { margin-bottom: 22px; }
.about-grid p { margin: 0 0 18px; font-size: 17px; line-height: 1.7; color: #5A6B73; }
.about-grid p strong { color: #1E2A30; }
.about-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  margin-top: 10px;
  border-top: 1px solid rgba(14,58,76,.1);
}
.about-person__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0E3A4C;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #fff;
}
.about-person__name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: #0E3A4C; }
.about-person__role { font-size: 14px; color: #5A6B73; }

.about-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14,58,76,.18);
}
.about-photo img { display: block; width: 100%; height: 520px; object-fit: cover; }
.about-photo__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 14px 20px;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.about-photo__badge strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #E8762D;
  line-height: 1;
}
.about-photo__badge span { display: block; font-size: 13.5px; color: #5A6B73; margin-top: 2px; }

/* ============================================================
   SLUŽBY — karty
   ============================================================ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .kicker { margin-bottom: 14px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(14,58,76,.07);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(14,58,76,.05);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14,58,76,.14);
}
/* fotka nad kartou — rámeček ořezává jen fotku (zoom), ikonka může přesahovat */
.svc-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  background: #EEF3F5;
}
.svc-card__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.svc-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-card__frame img { transform: scale(1.06); }
.svc-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 40px 28px 30px;
}
.svc-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--svc-tint, rgba(232,118,45,.1));
  transition: transform .28s cubic-bezier(.2,.7,.2,1), background .28s ease;
}
/* ikonka přesazená přes roh fotky */
.svc-card__media .svc-ico {
  position: absolute;
  left: 24px;
  bottom: -28px;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(14,58,76,.16);
  z-index: 2;
}
.svc-card:hover .svc-ico { transform: scale(1.08) rotate(-4deg); }
.svc-card h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0E3A4C;
}
.svc-card p { margin: 0; font-size: 15px; line-height: 1.6; color: #5A6B73; }
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--svc, #E8762D);
}
.cardbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--svc, #E8762D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.svc-card:hover .cardbar { transform: scaleX(1); }

/* ============================================================
   REALIZACE — galerie
   ============================================================ */
#realizace { scroll-margin-top: 90px; }
.gal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.gal-head .kicker { margin-bottom: 14px; }
.gal-head .h2 { margin: 0; }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.galcard {
  position: relative;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-color: #EEF3F5;
  background-image: repeating-linear-gradient(135deg, rgba(14,58,76,.05) 0 12px, rgba(14,58,76,.09) 12px 24px);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.galcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(14,58,76,.16);
}
.galcard--sm { height: 240px; cursor: default; }
.galcard--sm:hover { transform: none; box-shadow: none; }
.galcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* u karet s fotkou je popisek vidět trvale */
.galcard--sm .galov, .galcard--hasimg .galov { opacity: 1; }
.galcard__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}
.galcard__ph svg { opacity: .5; }
.galcard__label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: .02em;
  color: #0E3A4C;
  opacity: .75;
}
.galov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,38,50,.82) 0%, rgba(9,38,50,0) 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.galcard:hover .galov { opacity: 1; }
.galov span { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: #fff; }

.gal-note { margin: 26px 0 0; font-size: 14px; color: #5A6B73; font-style: italic; }

/* ============================================================
   KONTAKT (home sekce)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: stretch;
}
.contact-grid .h2 { font-size: 34px; margin-bottom: 20px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(14,58,76,.08);
  text-decoration: none;
}
.contact-item__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,118,45,.12);
  flex: none;
}
.contact-item__label { display: block; font-size: 12.5px; color: #5A6B73; }
.contact-item__value {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0E3A4C;
}
.contact-item__value--sm { font-size: 16px; }

/* ============================================================
   STRÁNKA SLUŽBY
   ============================================================ */
.svc-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0E3A4C;
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.svc-hero__inner { position: relative; width: 100%; padding-top: 48px; padding-bottom: 48px; text-align: center; }
.svc-hero__crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  animation: fadeUp .5s cubic-bezier(.2,.7,.2,1) both;
}
.svc-hero__crumbs a { color: rgba(255,255,255,.7); }
.svc-hero__crumbs a:hover { color: #fff; }
.svc-hero__crumbs .current { color: #F6A96B; }
.svc-hero__title {
  margin: 0 auto;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 840px;
  text-wrap: balance;
  animation: fadeUp .6s cubic-bezier(.2,.7,.2,1) both;
}
/* jednoduché podtržení nadpisu */
.svc-hero__line {
  width: 76px;
  height: 4px;
  border-radius: 2px;
  background: var(--svc, #E8762D);
  margin: 20px auto 0;
  animation: fadeUp .6s cubic-bezier(.2,.7,.2,1) .1s both;
}
/* barevný akcent podle služby */
.svc-desc .kicker { color: var(--svc, #E8762D); }
.svc-hero__crumbs .current { color: var(--svc-light, #F6A96B); }

.svc-desc {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.svc-desc .kicker { margin-bottom: 14px; }
.svc-desc .h2 { font-size: 34px; margin-bottom: 20px; }
.svc-desc__lead { margin: 0; font-size: 17px; line-height: 1.75; color: #5A6B73; }
.svc-desc__img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(14,58,76,.16);
  background-color: #EEF3F5;
}

.section-title-center {
  margin: 0 0 40px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.01em;
  color: #0E3A4C;
  text-align: center;
}

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(14,58,76,.07);
}
.benefit-card__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--svc-tint, rgba(232,118,45,.1));
  color: var(--svc, #E8762D);
}
.benefit-card__ico svg { stroke: currentColor; }
.benefit-card h3 { margin: 0; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px; color: #0E3A4C; }
.benefit-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #5A6B73; }

/* značky */
.brands { padding-top: 64px; padding-bottom: 64px; text-align: center; }
.brands__label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5A6B73;
  margin-bottom: 30px;
}
.brands__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.brands__item { display: flex; align-items: center; justify-content: center; height: 56px; }
.brands__item img { max-height: 52px; max-width: 160px; object-fit: contain; }
.brands__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #0E3A4C;
  letter-spacing: -.01em;
}

/* postup spolupráce */
.steps { padding-top: 88px; padding-bottom: 88px; }
.steps__head { text-align: center; margin-bottom: 52px; }
.steps__head h2 { margin: 0; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 32px; letter-spacing: -.01em; color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step__n { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 44px; line-height: 1; color: #E8762D; }
.step h3 { margin: 0; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: #fff; }
.step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.72); }

/* CTA blok s formulářem (stránka služby) */
.svc-cta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.svc-cta .h2 { font-size: 32px; }
.svc-cta p { margin: 0 0 26px; font-size: 17px; line-height: 1.65; color: #5A6B73; }

/* ============================================================
   STRÁNKA KONTAKT
   ============================================================ */
.contact-hero { padding-top: 72px; padding-bottom: 60px; }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .current { color: #F6A96B; }
.contact-hero h1 {
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
}
.contact-hero p { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 600px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 64px;
  padding-bottom: 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(14,58,76,.09);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(14,58,76,.05);
  text-decoration: none;
}
a.contact-card:hover { border-color: #E8762D; }
.contact-card__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(14,58,76,.07);
}
.contact-card__ico--accent { background: rgba(232,118,45,.12); }
.contact-card__label { font-size: 12.5px; color: #5A6B73; }
.contact-card__value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0E3A4C;
}
.contact-card__value--mail { font-size: 15.5px; word-break: break-all; }
.contact-card__value--sm { font-size: 16px; }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact-form-grid .h2 { font-size: 32px; }
.contact-form-grid .lead { margin-bottom: 28px; }
.map-embed { border-radius: 12px; overflow: hidden; border: 1px solid rgba(14,58,76,.12); }
.map-embed iframe { display: block; width: 100%; height: 300px; border: 0; }

.cities { padding-top: 80px; padding-bottom: 80px; text-align: center; }
.cities .lead { max-width: 680px; margin: 0 auto 36px; }
.cities__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #EEF3F5;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #0E3A4C;
}
.chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8762D;
}
.cities__note {
  margin: 38px 0 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #4F7F52;
}

/* ============================================================
   FORMULÁŘ POPTÁVKY
   ============================================================ */
.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  width: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(14,58,76,.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(14,58,76,.08);
}
.form-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--grow { flex: 1 1 auto; min-height: 96px; }
.field__label { font-size: 13px; font-weight: 600; color: #0E3A4C; letter-spacing: .01em; }
.input {
  height: 50px;
  padding: 0 15px;
  border: 1.5px solid #D9E2E6;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1E2A30;
  background: #fff;
  outline: none;
  width: 100%;
}
.input:focus { border-color: #E8762D; }
select.input { padding: 0 12px; }
textarea.input {
  flex: 1 1 auto;
  min-height: 88px;
  height: auto;
  padding: 13px 15px;
  line-height: 1.55;
  resize: vertical;
}
.form-error { margin: 0; font-size: 14px; color: #C0492B; font-weight: 500; }
.form-card__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-card__submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 28px;
  border: none;
  background: #E8762D;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(232,118,45,.28);
}
.form-card__submit:hover { background: #d5651f; }
.form-card__note { font-size: 13.5px; color: #5A6B73; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* poděkování po odeslání */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(14,58,76,.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(14,58,76,.08);
  width: 100%;
}
.form-success__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(79,127,82,.12);
}
.form-success h3 { margin: 0; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 22px; color: #0E3A4C; }
.form-success p { margin: 0; font-size: 16px; line-height: 1.6; color: #5A6B73; max-width: 440px; }
.form-success p a { font-weight: 600; }
.form-success__again {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 20px;
  border: 1.5px solid #0E3A4C;
  background: transparent;
  color: #0E3A4C;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.form-success__again:hover { background: #0E3A4C; color: #fff; }

/* ============================================================
   CTA PÁS
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: #0E3A4C; }
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9,38,50,.94) 20%, rgba(9,38,50,.72) 100%), url('../img/cta-pozadi.jpg');
  background-size: cover;
  background-position: center;
}
.cta-band__inner {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  margin: 0 0 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: balance;
}
.cta-band p { margin: 0; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.82); }
.cta-band__text { max-width: 640px; }
.cta-band__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   PATIČKA
   ============================================================ */
.site-footer { background: #0A2C3A; color: rgba(255,255,255,.75); }
.site-footer__grid {
  padding-top: 64px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.site-footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.site-footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #E8762D;
  text-decoration: none;
}
.site-footer__mark img { display: block; width: 26px; height: 26px; }
.site-footer__name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 19px; color: #fff; }
.site-footer__about { margin: 0; font-size: 14.5px; line-height: 1.65; max-width: 280px; }
.site-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .22s ease, transform .22s ease, color .22s ease;
}
.site-footer__social a:hover { background: #E8762D; color: #fff; transform: translateY(-3px); }
.site-footer h4 {
  margin: 0 0 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: #fff;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.site-footer__links a { color: rgba(255,255,255,.75); }
.site-footer__links a:hover { color: #E8762D; }
.site-footer__links .strong { color: #fff; font-weight: 600; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.site-footer__credit { color: rgba(255,255,255,.75); }
.site-footer__credit:hover { color: #E8762D; }

/* ============================================================
   RESPONZIVITA
   ============================================================ */
@media (max-width: 1024px) {
  .hero__title { font-size: 44px; }
  .svc-grid, .benefit-grid, .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .svc-desc, .svc-cta, .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .about-photo img { height: 400px; }
}

@media (max-width: 760px) {
  .section { padding-top: 64px; padding-bottom: 64px; }
  .h2 { font-size: 30px; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero__title { font-size: 34px; }
  .hero__text { font-size: 17px; }
  .hero__arrow { display: none; }
  .svc-hero__title { font-size: 30px; }
  .contact-hero h1 { font-size: 36px; }
  .svc-grid, .benefit-grid, .gal-grid, .steps-grid, .contact-cards { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card__row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .header-phone span { display: none; }
  .header-phone { padding: 0 14px; }

  /* mobilní navigace */
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid rgba(14,58,76,.12);
    box-shadow: 0 18px 40px rgba(14,58,76,.14);
    padding: 10px 16px 16px;
  }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; justify-content: flex-start; padding: 12px 14px; }
  .dropdown { width: 100%; }
  .dropdown > .nav-link { width: 100%; }
  .dropdown__menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0 0 0 10px;
    animation: none;
  }
}
