:root,
[data-theme="masculine"] {
  
  --wf-color-primary: #0F172A;
  --wf-color-secondary: #1E293B;
  --wf-color-accent: #D4A853;
  --wf-color-background: #FFFFFF;
  --wf-color-surface: #FFFFFF;
  --wf-color-surface-alt: #F8FAFC;
  --wf-color-muted: #94A3B8;
  --wf-color-text: #0F172A;
  --wf-color-text-muted: #64748B;
  --wf-color-text-inverse: #FFFFFF;
  --wf-color-border: #E2E8F0;
  --wf-color-navbar: #F3ECE2;
  --wf-color-navbar-border: #E5DACE;
  --wf-color-navbar-hover: #EAE1D4;
  --wf-shadow-navbar: 0 1px 0 rgba(15, 23, 42, 0.05), 0 10px 28px -16px rgba(15, 23, 42, 0.1);
  --wf-font-heading: 'Inter', system-ui, sans-serif;
  --wf-font-body: 'Inter', system-ui, sans-serif;
  --wf-radius-button: 9999px;
  --wf-radius-card: 20px;
  --wf-radius-input: 14px;
  --wf-shadow-card: 0 10px 40px -16px rgba(15, 23, 42, 0.14);
  --wf-shadow-card-hover: 0 20px 50px -18px rgba(15, 23, 42, 0.22);
  --wf-section-spacing: 7.5rem;
  --wf-section-spacing-lg: 8.75rem;
  --wf-hero-overlay: rgba(15, 23, 42, 0.72);

  --wf-container: 1280px;
  --wf-gutter: clamp(1rem, 3vw, 2rem);
  --wf-type-hero: clamp(2.75rem, 5vw, 4rem);
  --wf-type-section: clamp(2rem, 3.5vw, 3rem);
  --wf-type-card: 1.75rem;
  --wf-type-body: 1.125rem;
  --wf-type-small: 0.9375rem;
  --wf-leading-tight: 1.15;
  --wf-leading-body: 1.75;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--wf-font-body);
  font-size: var(--wf-type-body);
  color: var(--wf-color-text);
  background: var(--wf-color-background);
  line-height: var(--wf-leading-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wf-font-heading);
  line-height: var(--wf-leading-tight);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
button, input, textarea, select {
  font-family: inherit;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 0; list-style: none; }

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--wf-gutter) * 2), var(--wf-container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--wf-radius-button);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.btn--primary {
  background: var(--wf-color-accent);
  color: var(--wf-color-primary);
}
.btn--secondary {
  background: transparent;
  color: var(--wf-color-text-inverse);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--wf-color-text);
  border-color: var(--wf-color-border);
}
.btn:hover { transform: translateY(-1px); }
.btn--disabled {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.btn--compact {
  padding: 0.65rem 1rem;
  font-size: var(--wf-type-small);
  white-space: nowrap;
}
.btn--map {
  margin-top: auto;
  align-self: flex-start;
}

.floating-cta {
  position: fixed;
  right: max(1.75rem, calc(env(safe-area-inset-right) + 1rem));
  bottom: max(2.35rem, calc(env(safe-area-inset-bottom) + 1.6rem));
  z-index: 999;
}
.floating-cta__toggle {
  width: auto;
  padding: 0.75rem 1.5rem 0.75rem 1.25rem;
  font-size: var(--wf-type-small);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow:
    0 22px 55px -30px rgba(15, 23, 42, 0.55),
    0 0 0 3px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  will-change: transform;
}
.floating-cta__toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 200ms ease;
}
.floating-cta:hover .floating-cta__toggle,
.floating-cta.is-open .floating-cta__toggle { transform: translateY(-2px); }
.floating-cta:hover .floating-cta__toggle::after,
.floating-cta:focus-within .floating-cta__toggle::after,
.floating-cta.is-open .floating-cta__toggle::after { transform: rotate(-135deg) translateY(-1px); }
.floating-cta__toggle:focus-visible {
  outline: none;
  box-shadow:
    0 22px 55px -30px rgba(15, 23, 42, 0.55),
    0 0 0 3px rgba(15, 23, 42, 0.10),
    0 0 0 6px rgba(212, 168, 83, 0.28);
}

/* --- vyskakovací výběr pobočky nad plovoucím tlačítkem --- */
.floating-cta__menu {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 0.7rem;
  min-width: 15rem;
  max-width: calc(100vw - 2rem);
  display: flex;
  flex-direction: column;
  background: var(--wf-color-surface);
  border: 1px solid var(--wf-color-border);
  border-radius: var(--wf-radius-card);
  box-shadow: var(--wf-shadow-card-hover);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}
/* neviditelný můstek, ať hover nespadne v mezeře mezi tlačítkem a menu */
.floating-cta__menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.7rem;
}
.floating-cta:hover .floating-cta__menu,
.floating-cta:focus-within .floating-cta__menu,
.floating-cta.is-open .floating-cta__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-cta__option {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--wf-color-text);
  transition: background 150ms ease;
}
.floating-cta__option + .floating-cta__option {
  border-top: 1px solid var(--wf-color-border);
}
.floating-cta__option:hover,
.floating-cta__option:focus-visible {
  background: var(--wf-color-surface-alt);
  outline: none;
}
.floating-cta__option-name {
  font-weight: 600;
  font-size: var(--wf-type-small);
}
.floating-cta__option-addr {
  font-size: 0.8125rem;
  color: var(--wf-color-text-muted);
}

/* --- hero: výběr pobočky POD tlačítkem „Objednat online“ --- */
.hero-demo__cta-menu {
  position: relative;
  display: inline-flex;
  z-index: 5;
}
.hero-demo__cta-primary[data-cta-toggle] { cursor: pointer; }
.hero-demo__cta-primary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.hero-demo__cta-menu:hover .hero-demo__cta-primary::after,
.hero-demo__cta-menu:focus-within .hero-demo__cta-primary::after,
.hero-demo__cta-menu.is-open .hero-demo__cta-primary::after {
  transform: rotate(-135deg) translateY(2px);
}
.hero-demo__cta-list {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.6rem;
  min-width: 16rem;
  max-width: calc(100vw - 2.5rem);
  display: flex;
  flex-direction: column;
  background: var(--wf-color-surface);
  border: 1px solid var(--wf-color-border);
  border-radius: var(--wf-radius-card);
  box-shadow: var(--wf-shadow-card-hover);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 20;
}
/* neviditelný můstek nad menu, ať hover nespadne v mezeře */
.hero-demo__cta-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.6rem;
}
.hero-demo__cta-menu:hover .hero-demo__cta-list,
.hero-demo__cta-menu:focus-within .hero-demo__cta-list,
.hero-demo__cta-menu.is-open .hero-demo__cta-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hero-demo__cta-option {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  color: var(--wf-color-text);
  transition: background 150ms ease;
}
.hero-demo__cta-option + .hero-demo__cta-option {
  border-top: 1px solid var(--wf-color-border);
}
.hero-demo__cta-option:hover,
.hero-demo__cta-option:focus-visible {
  background: var(--wf-color-surface-alt);
  outline: none;
}
.hero-demo__cta-option-name {
  font-weight: 600;
  font-size: var(--wf-type-small);
}
.hero-demo__cta-option-addr {
  font-size: 0.8125rem;
  color: var(--wf-color-text-muted);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--wf-color-text-inverse);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--wf-color-navbar);
  border-bottom: 1px solid var(--wf-color-navbar-border);
  box-shadow: var(--wf-shadow-navbar);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--wf-color-text);
}
.brand:hover { color: var(--wf-color-primary); }
.brand__logo {
  height: 48px;
  width: auto;
  max-height: 53px;
  object-fit: contain;
}
.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wf-color-primary);
  color: var(--wf-color-text-inverse);
}
.brand__name { font-family: var(--wf-font-heading); }
.nav { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.nav__link {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--wf-color-text-muted);
  font-size: 0.95rem;
  transition: color 180ms ease, background-color 180ms ease;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--wf-color-text);
  background: var(--wf-color-navbar-hover);
  outline: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wf-color-navbar-border);
  border-radius: 12px;
  background: var(--wf-color-navbar);
  padding: 0;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--wf-color-navbar-hover);
  outline: none;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--wf-color-text);
}

.hero--demo {
  position: relative;
  overflow: hidden;
  color: var(--wf-color-text);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 168, 83, 0.08), transparent 34%),
    linear-gradient(180deg, #FCFCFA 0%, #F7F5F1 100%);
  padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}
.hero-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero-demo__copy {
  max-width: 34rem;
}
.hero-demo__logo {
  display: block;
  width: clamp(240px, 30vw, 380px);
  height: auto;
  max-width: 100%;
  margin: 0 0 1.35rem;
  object-fit: contain;
}
.hero-demo__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.75rem, 5.2vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--wf-color-primary);
}
.hero-demo__description {
  margin: 0 0 2.25rem;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--wf-color-text-muted);
}
.hero-demo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}
.hero-demo__cta-primary {
  cursor: default;
  box-shadow: 0 14px 40px -18px rgba(212, 168, 83, 0.75);
}
.hero-demo__cta-secondary {
  color: var(--wf-color-primary);
  border-color: color-mix(in srgb, var(--wf-color-primary) 18%, var(--wf-color-border));
  background: rgba(255,255,255,0.65);
}
.hero-demo__cta-secondary:hover {
  background: var(--wf-color-primary);
  color: var(--wf-color-text-inverse);
  border-color: var(--wf-color-primary);
}
.hero-demo__trust {
  margin: 0;
  font-size: var(--wf-type-small);
  letter-spacing: 0.02em;
  color: var(--wf-color-text-muted);
}
.hero-demo__stars {
  color: var(--wf-color-accent);
  letter-spacing: 0.08em;
}
.hero-demo__visual {
  position: relative;
  min-height: clamp(380px, 42vw, 640px);
}
.hero-demo__visual--empty {
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(15,23,42,0.04), rgba(15,23,42,0.02)),
    linear-gradient(180deg, #EFEDE8, #E7E2DA);
  border: 1px solid rgba(15,23,42,0.06);
}
.hero-demo__frame {
  position: relative;
  height: 100%;
  min-height: inherit;
  border-radius: 32px;
  overflow: hidden;
  background: #ECE8E1;
  box-shadow:
    0 30px 80px -40px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(15, 23, 42, 0.05);
}
.hero-demo__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(15, 23, 42, 0.12) 100%);
  pointer-events: none;
}
.hero-demo__picture,
.hero-demo__picture img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

/* Photo hero variant — remove .hero--photo from section to rollback */
.hero--photo {
  min-height: clamp(640px, 92vh, 920px);
  padding: clamp(2rem, 3.5vw, 2.75rem) 0 clamp(4rem, 7vw, 5.5rem);
  color: #fff;
  background: #0f172a;
}
.hero-demo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-demo__bg:not(video) {
  display: block;
}
.hero--video .hero-demo__bg {
  pointer-events: none;
}
.hero-demo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
.hero-demo__overlay--side {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}
.hero-demo--photo {
  position: relative;
  z-index: 2;
  display: block;
  min-height: auto;
}
.hero--photo .hero-demo__copy {
  max-width: 38rem;
}
.hero--photo .hero-demo__logo {
  width: clamp(173px, 22vw, 274px);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
}
.hero--photo .hero-demo__title {
  color: #fff;
}
.hero--photo .hero-demo__description {
  color: rgba(255, 255, 255, 0.82);
}
.hero--photo .hero-demo__cta-primary {
  box-shadow: 0 14px 40px -18px rgba(212, 168, 83, 0.85);
}
.hero--photo .hero-demo__cta-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--photo .hero-demo__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero--photo .hero-demo__trust {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.hero-demo__location-banner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: max-content;
  max-width: calc(100vw - var(--wf-gutter) * 2);
  pointer-events: none;
}
.hero-demo__location-banner-text {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 0;
  padding: clamp(0.65rem, 1.2vw, 0.85rem) clamp(1rem, 2vw, 1.5rem);
  text-align: right;
  white-space: nowrap;
  font-family: var(--wf-font-body);
  font-size: clamp(0.56rem, 0.95vw, 0.72rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wf-color-accent);
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(212, 168, 83, 0.42);
  border-radius: 6px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 40px -16px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-demo__location-item {
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-demo__location-sep {
  flex-shrink: 0;
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin: 0 0.1rem;
  background: rgba(212, 168, 83, 0.92);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .hero-demo__location-banner {
    position: static;
    width: 100%;
    max-width: none;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hero-demo__location-banner-text {
    justify-content: flex-start;
    text-align: left;
    font-size: clamp(0.52rem, 2.2vw, 0.64rem);
    letter-spacing: 0.08em;
  }
}
.hero-demo__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(5rem, 9vw, 7rem);
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 35%,
    rgba(248, 250, 252, 0.28) 52%,
    rgba(248, 250, 252, 0.72) 75%,
    var(--wf-color-surface-alt) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.section {
  padding: var(--wf-section-spacing) 0;
}
.section--alt {
  background: var(--wf-color-surface-alt);
}
.section--contact {
  background: linear-gradient(180deg, var(--wf-color-background), var(--wf-color-surface-alt));
}
.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section__header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--reviews {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services-browser {
  max-width: 920px;
  margin-inline: auto;
}
.services-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.25rem 0 1.75rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }
.services-tab {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  background: var(--wf-color-surface);
  color: var(--wf-color-text);
  font: inherit;
  font-size: var(--wf-type-small);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--wf-color-border);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.services-tab:hover {
  border-color: color-mix(in srgb, var(--wf-color-primary) 20%, var(--wf-color-border));
}
.services-tab.is-active {
  background: var(--wf-color-primary);
  color: var(--wf-color-text-inverse);
  border-color: var(--wf-color-primary);
}
.services-panels {
  position: relative;
  min-height: 120px;
}
.services-panel {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}
.services-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.services-panel[hidden] {
  display: none;
}
.services-panel__list {
  display: grid;
  gap: 0.85rem;
}
.service-item {
  background: var(--wf-color-surface);
  border: 1px solid var(--wf-color-border);
  border-radius: calc(var(--wf-radius-card) - 2px);
  padding: 1.35rem 1.4rem 1.15rem;
  box-shadow: var(--wf-shadow-card);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}
.service-item.is-open {
  border-color: color-mix(in srgb, var(--wf-color-accent) 28%, var(--wf-color-border));
  box-shadow: var(--wf-shadow-card-hover);
}
.service-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.service-item__main { min-width: 0; flex: 1; }
.service-item__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}
.service-item__title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}
.service-item__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--wf-color-accent) 16%, white);
  color: var(--wf-color-primary);
}
.service-item__meta {
  margin: 0;
  color: var(--wf-color-text-muted);
  font-size: var(--wf-type-small);
  line-height: 1.6;
}
.service-item__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wf-color-text);
  white-space: nowrap;
}
.service-item__toggle {
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--wf-color-text-muted);
  font: inherit;
  font-size: var(--wf-type-small);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.service-item__toggle:hover { color: var(--wf-color-text); }
.service-item__details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 420ms ease, opacity 320ms ease, margin-top 320ms ease;
}
.service-item__details.is-open {
  margin-top: 1rem;
  opacity: 1;
}
.service-item__details[hidden] { display: block; }
.service-item__full,
.service-item__notes {
  margin: 0 0 1rem;
  color: var(--wf-color-text-muted);
  line-height: var(--wf-leading-body);
}
.service-item__includes {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--wf-color-text-muted);
}
.service-item__includes li { margin-bottom: 0.35rem; }
.service-item__facts {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1rem;
}
.service-item__facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--wf-color-border);
}
.service-item__facts dt {
  margin: 0;
  font-size: var(--wf-type-small);
  color: var(--wf-color-text-muted);
}
.service-item__facts dd {
  margin: 0;
  font-weight: 600;
}
.service-item__cta { margin-top: 0.5rem; }

.section__title {
  font-size: var(--wf-type-section);
}
.section__intro {
  color: var(--wf-color-text-muted);
  font-size: var(--wf-type-body);
  line-height: var(--wf-leading-body);
  max-width: 42rem;
  margin-inline: auto;
}
.section__header--left .section__intro { margin-inline: 0; }

.card {
  background: var(--wf-color-surface);
  border: 1px solid var(--wf-color-border);
  border-radius: var(--wf-radius-card);
  padding: 1.75rem;
  box-shadow: var(--wf-shadow-card);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wf-shadow-card-hover);
  border-color: color-mix(in srgb, var(--wf-color-accent) 24%, var(--wf-color-border));
}
.card__title {
  font-size: var(--wf-type-card);
  margin-bottom: 0.85rem;
}
.card__text {
  color: var(--wf-color-text-muted);
  margin: 0;
  font-size: var(--wf-type-body);
  line-height: var(--wf-leading-body);
}
.service-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section--gallery {
  background: var(--wf-color-background);
}

.gallery-single {
  max-width: 1080px;
  margin-inline: auto;
}
.gallery-single__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: calc(var(--wf-radius-card) + 4px);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 24px 70px -36px rgba(15, 23, 42, 0.35);
}
.gallery-single__trigger img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.gallery-single__caption {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--wf-color-text-muted);
  font-size: var(--wf-type-small);
}

.gallery-carousel {
  max-width: 1080px;
  margin-inline: auto;
}
.gallery-carousel__viewport {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.gallery-carousel__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.gallery-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 650ms ease, transform 900ms ease;
  pointer-events: none;
}
.gallery-carousel__slide.is-active {
  position: relative;
  inset: auto;
  width: 100%;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.gallery-carousel__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-carousel__trigger img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
}
.gallery-carousel__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.5rem 1.25rem 1rem;
  color: #fff;
  font-size: var(--wf-type-small);
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.72));
  pointer-events: none;
}
.gallery-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 200ms ease, transform 200ms ease;
}
.gallery-carousel__arrow:hover {
  background: rgba(15, 23, 42, 0.72);
  transform: translateY(-50%) scale(1.04);
}
.gallery-carousel__arrow--prev { left: 1rem; }
.gallery-carousel__arrow--next { right: 1rem; }
.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.gallery-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--wf-color-primary) 18%, var(--wf-color-border));
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease;
}
.gallery-carousel__dot.is-active {
  width: 1.65rem;
  background: var(--wf-color-accent);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(8px);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(92vw, 72rem);
  max-height: 90vh;
}
.gallery-lightbox__image {
  max-width: 100%;
  max-height: calc(90vh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--wf-radius-card);
  box-shadow: var(--wf-shadow-card-hover);
}
.gallery-lightbox__meta[hidden] { display: none; }
.gallery-lightbox__caption {
  margin: 0;
  font-size: var(--wf-type-small);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  max-width: 40rem;
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.gallery-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
}
.gallery-lightbox__nav {
  top: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  transform: translateY(-50%);
}
.gallery-lightbox__nav--prev { left: 1rem; }
.gallery-lightbox__nav--next { right: 1rem; }
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover { background: rgba(255, 255, 255, 0.14); }

.reviews-aggregate {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--wf-color-surface);
  border: 1px solid var(--wf-color-border);
  color: var(--wf-color-text-muted);
}
.reviews-aggregate__rating {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wf-color-text);
}
.reviews-aggregate__stars { color: var(--wf-color-accent); }
.reviews-aggregate__sep { opacity: 0.45; }
.review-card__header {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--wf-color-border);
}
.review-card__avatar--initials,
.review-card__avatar--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wf-color-secondary), var(--wf-color-primary));
  color: var(--wf-color-text-inverse);
  font-weight: 700;
}
.review-card__meta { flex: 1; min-width: 0; }
.review-card__author {
  font-size: 1.05rem;
  margin: 0;
}
.review-card__date {
  margin: 0.2rem 0 0;
  font-size: var(--wf-type-small);
  color: var(--wf-color-text-muted);
}
.review-card__stars {
  margin-left: auto;
  color: var(--wf-color-accent);
  white-space: nowrap;
}
.review-card__body--collapsible .review-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__body.is-expanded .review-card__text {
  display: block;
  -webkit-line-clamp: unset;
}
.review-card__text {
  margin: 0;
  color: var(--wf-color-text-muted);
  line-height: var(--wf-leading-body);
}
.review-card__more {
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--wf-color-accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.about--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.about__subtitle {
  margin: 0.75rem 0 0;
  font-size: 1.2rem;
  line-height: var(--wf-leading-body);
  color: var(--wf-color-text-muted);
  max-width: 38rem;
}
.about__body {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: var(--wf-leading-body);
  color: var(--wf-color-text-muted);
}
.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--wf-radius-card);
  background: color-mix(in srgb, var(--wf-color-accent) 8%, var(--wf-color-surface));
  border: 1px solid var(--wf-color-border);
}
.about__highlight {
  position: relative;
  padding-left: 1.15rem;
  font-size: var(--wf-type-small);
  font-weight: 600;
  color: var(--wf-color-text);
  line-height: 1.45;
}
.about__highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--wf-color-accent);
}
.about__media img {
  border-radius: var(--wf-radius-card);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--wf-color-surface);
  border: 1px solid var(--wf-color-border);
  border-radius: var(--wf-radius-card);
  padding: 0.25rem 1rem;
}
.faq-item__question {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__answer {
  color: var(--wf-color-text-muted);
  padding-bottom: 1rem;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.contact__panel,
.contact__map,
.contact__hours {
  height: 100%;
}
.contact__panel {
  display: flex;
  flex-direction: column;
}
.contact__brand {
  font-family: var(--wf-font-heading);
  font-size: var(--wf-type-card);
  margin: 0 0 1.25rem;
}
.contact__list {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
  flex: 1;
}
.contact__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--wf-color-text);
}
.contact__item a { color: var(--wf-color-accent); font-weight: 600; }
.contact__phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.contact__item--booking-only { justify-content: flex-start; }
.contact__label {
  display: block;
  font-size: var(--wf-type-small);
  color: var(--wf-color-text-muted);
  margin-bottom: 0.15rem;
}
.contact__map {
  padding: 0;
  overflow: hidden;
  min-height: 360px;
}
.contact__map-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: calc(var(--wf-radius-card) - 6px);
  overflow: hidden;
}
.contact__map-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.contact__map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: calc(var(--wf-radius-card) - 6px);
}
.contact__map-fallback {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  min-height: 360px;
  color: var(--wf-color-text-muted);
  text-decoration: none;
}
.contact__hours-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.contact__hours-head h3 {
  margin: 0;
  font-size: 1.25rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--wf-color-border);
  text-align: left;
  font-size: var(--wf-type-body);
}
.hours-table th {
  color: var(--wf-color-text-muted);
  font-weight: 500;
  width: 42%;
}
.btn--map {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer {
  background: var(--wf-color-primary);
  color: var(--wf-color-text-inverse);
  padding: 4rem 0 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__brand {
  font-family: var(--wf-font-heading);
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}
.site-footer__logo {
  height: 40px;
  width: auto;
  max-height: 44px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}
.site-footer__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.site-footer__text,
.site-footer__links a,
.site-footer__contact a,
.site-footer__contact span {
  color: rgba(255,255,255,0.78);
  font-size: var(--wf-type-small);
  line-height: 1.7;
}
.site-footer__links,
.site-footer__contact {
  display: grid;
  gap: 0.55rem;
}
.site-footer__contact li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}
.site-footer__social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--wf-color-text-inverse);
  transition: transform 200ms ease, background 200ms ease;
}
.site-footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
}
.site-footer__copy {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: var(--wf-type-small);
}
.site-footer__top {
  color: rgba(255,255,255,0.72);
  font-size: var(--wf-type-small);
  text-decoration: none;
}

@media (max-width: 900px) {
  .about,
  .contact__layout,
  .site-footer__grid,
  .hero-demo {
    grid-template-columns: 1fr;
  }
  .about__highlights { grid-template-columns: 1fr; }
  .hero-demo__copy { order: 1; }
  .hero-demo__visual { order: 2; min-height: 340px; }
  .gallery-carousel__arrow { width: 2.35rem; height: 2.35rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--wf-color-navbar);
    border-bottom: 1px solid var(--wf-color-navbar-border);
    box-shadow: var(--wf-shadow-navbar);
    padding: 0.75rem 1rem 1rem;
  }
  .nav.is-open { display: flex; }
  .site-header__inner { position: relative; }
  .hero-demo__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .floating-cta {
    right: max(1rem, calc(env(safe-area-inset-right) + 0.75rem));
    bottom: max(1.25rem, calc(env(safe-area-inset-bottom) + 1rem));
  }
  .floating-cta__toggle {
    width: auto;
    padding: 0.735rem 1.5rem 0.735rem 1.21rem;
    font-size: calc(var(--wf-type-small) * 1.05);
  }
  .floating-cta__menu { min-width: 13.5rem; }
  .floating-cta__option { padding: 0.9rem 1rem; }
  .contact__phone-row { flex-direction: column; align-items: stretch; }
  .grid--reviews { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero__content { max-width: 640px; }
  .grid--reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1025px) {
  .section { padding: var(--wf-section-spacing-lg) 0; }
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--wf-color-accent);
  color: var(--wf-color-primary);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; }


/* --- Sociální ikony v patičce ------------------------------------------- */
.site-footer__social a svg {
  width: 20px;
  height: 20px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-footer__legal a,
.site-footer__cookie-btn {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--wf-type-small);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.site-footer__legal a:hover,
.site-footer__cookie-btn:hover { color: #fff; }

/* --- Cookie banner (GDPR) ---------------------------------------------------
 * position: fixed → mimo tok dokumentu → nulový CLS. */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--wf-color-primary);
  color: var(--wf-color-text-inverse);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -12px 40px -18px rgba(0, 0, 0, 0.55);
  transform: translateY(100%);
  transition: transform 300ms ease;
  padding: env(safe-area-inset-bottom) 0 0;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--wf-container);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: var(--wf-type-small);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.cookie-banner__link { color: #fff; }
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-banner__actions .btn { white-space: nowrap; }
.cookie-banner__actions .btn--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}
.cookie-banner__actions .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* plovoucí CTA se během zobrazeného banneru skryje, ať se nepřekrývají */
body.has-cookie-banner .floating-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
  .floating-cta__menu { transition: opacity 120ms ease, visibility 120ms; transform: none; }
  .floating-cta:hover .floating-cta__menu,
  .floating-cta:focus-within .floating-cta__menu,
  .floating-cta.is-open .floating-cta__menu { transform: none; }
  .floating-cta__toggle,
  .floating-cta__toggle::after { transition: none; }
  .hero-demo__cta-list { transition: opacity 120ms ease, visibility 120ms; transform: none; }
  .hero-demo__cta-menu:hover .hero-demo__cta-list,
  .hero-demo__cta-menu:focus-within .hero-demo__cta-list,
  .hero-demo__cta-menu.is-open .hero-demo__cta-list { transform: none; }
  .hero-demo__cta-primary::after { transition: none; }
}
