/* ============================================================
   DANDAN.CZ – Hodinový manžel
   Mobile-first, čistý CSS, žádné závislosti
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Barvy */
  --clr-navy:      #0f1c2e;
  --clr-navy-mid:  #1a2d45;
  --clr-navy-soft: #243858;
  --clr-orange:    #f97316;
  --clr-orange-dk: #ea580c;
  --clr-orange-lt: #fff7ed;
  --clr-white:     #ffffff;
  --clr-offwhite:  #f8fafc;
  --clr-text:      #1e293b;
  --clr-muted:     #64748b;
  --clr-border:    #e2e8f0;
  --clr-wa:        #25d366;

  /* Typografie */
  --ff-base: 'Manrope', system-ui, -apple-system, sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.5rem;
  --fs-5xl:  4.5rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;

  /* Ostatní */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.15);
  --nav-h:      68px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-base);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Section commons ─────────────────────────────────────── */
.section { padding-block: var(--space-3xl); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-block;
  background: var(--clr-orange-lt);
  color: var(--clr-orange-dk);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(var(--fs-xl), 4vw, var(--fs-3xl));
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-navy);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--clr-muted);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-base);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: .7em 1.4em;
  font-size: var(--fs-base);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--clr-orange-dk);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  padding: .7em 1.4em;
  font-size: var(--fs-base);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-muted);
  padding: .5em 1em;
  font-size: var(--fs-sm);
}
.btn-ghost:hover { color: var(--clr-text); }

.btn-lg { padding: .85em 1.8em; font-size: var(--fs-md); }
.btn-sm { padding: .45em 1em; font-size: var(--fs-sm); }

/* ── Animations ──────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-aos].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  background: var(--clr-navy);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: opacity .3s, transform .3s;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-content p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.site-header.is-scrolled {
  background: var(--clr-navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

.nav-logo {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--clr-orange); }

.nav-links {
  display: none;
  align-items: center;
  gap: .125rem;
  margin-left: auto;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: .4em .75em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--clr-white);
  background: rgba(255,255,255,.08);
}

.nav-cta { margin-left: auto; flex-shrink: 0; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-navy);
  padding: 2rem 1.5rem;
  gap: .5rem;
  align-items: flex-start;
  overflow-y: auto;
}
.nav-links.is-open .nav-link {
  font-size: var(--fs-lg);
  padding: .6em 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

@media (min-width: 900px) {
  .nav-links { display: flex; margin-left: auto; }
  .nav-cta { margin-left: 1rem; }
  .nav-toggle { display: none; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 85svh;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-soft) 100%);
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--clr-orange);
  top: -200px; right: -200px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #3b82f6;
  bottom: -100px; left: -100px;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-block: var(--space-sm) var(--space-md);
  position: relative;
  z-index: 1;
}

/* Mobile: badge + title nahoře */
.hero-text-top {
  text-align: center;
  width: 100%;
}

/* Mobile: subtitle + desc */
.hero-text-mid {
  text-align: center;
  width: 100%;
}

/* Mobile: tlačítka + statistiky */
.hero-cta {
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: clamp(0.62rem, 2.5vw, var(--fs-xs));
  font-weight: 600;
  letter-spacing: .04em;
  padding: .35em 1em;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(var(--fs-3xl), 5.5vw, var(--fs-4xl));
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.03em;
  margin-bottom: 0.4rem;
}
.hero-title strong { font-weight: 800; }
.text-accent { color: var(--clr-orange); }

.hero-sub {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-bottom: 0.4rem;
}

.hero-desc {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-xl);
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-orange);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 380px;

}

.hero-photo-wrap { position: relative; }

.hero-photo-placeholder {
  width: min(260px, 65vw);
  height: auto;
  aspect-ratio: 520/640;
  margin-bottom: -15%;
}

.hero-photo-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-badge-float {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: .5em 1.1em;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
}

#hero-animation {
  display: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (min-width: 860px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "top    visual"
      "mid    visual"
      "cta    cta";
    column-gap: 3rem;
    row-gap: 0;
    padding-block: var(--space-2xl) var(--space-2xl);
  }
  .hero-text-top {
    grid-area: top;
    text-align: left;
    align-self: end;
    padding-bottom: 0.75rem;
  }
  .hero-text-mid {
    grid-area: mid;
    text-align: left;
    align-self: start;
  }
  .hero-visual {
    grid-area: visual;
    align-self: stretch;
    justify-self: center;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero-photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
  }
  .hero-cta {
    grid-area: cta;
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
  }
  .hero-actions { justify-content: center; margin-bottom: 0; }
  .hero-stats   { justify-content: center; }
  .hero-photo-placeholder {
    width: auto;
    height: 85%;
    max-height: 440px;
    aspect-ratio: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-photo-img {
    width: auto;
    height: 85%;
    max-height: 440px;
    margin: auto;
  }
}

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: var(--clr-offwhite); }

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-grid .service-card {
  padding: 0;
  overflow: hidden;
}

.service-photo {
  height: 110px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.1rem 1.4rem 1.4rem;
}

.service-body--cta {
  padding: 1.75rem;
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card--cta {
  background: linear-gradient(135deg, var(--clr-orange-lt), #fef9f5);
  border-color: #fed7aa;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--c, #f1f5f9);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ── WHY DAN ─────────────────────────────────────────────── */
.why-dan { background: var(--clr-white); }

.why-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 860px) {
  .why-inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .why-photo-col { flex-shrink: 0; }
}

.why-photo-wrap { position: relative; }

.why-photo-placeholder {
  width: min(420px, 80vw);
  height: auto;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-photo-tag {
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-navy);
  color: var(--clr-white);
  padding: .6em 1.4em;
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
  font-size: var(--fs-xs);
  box-shadow: var(--shadow-sm);
}
.why-photo-tag strong { display: block; font-size: var(--fs-sm); font-weight: 700; }
.why-photo-tag span { opacity: .6; }

.why-content-col { flex: 1; }
.why-content-col .section-title { font-size: clamp(1.4rem, 2.8vw, 2rem); }

.why-intro {
  font-size: var(--fs-md);
  color: var(--clr-muted);
  margin-bottom: var(--space-xl);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 36px; height: 36px;
  background: var(--clr-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  flex-shrink: 0;
  margin-top: .1rem;
}

.why-item strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .25rem;
}
.why-item p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works { background: var(--clr-navy); color: var(--clr-white); }
.how-it-works .section-tag { background: rgba(249,115,22,.15); color: #fb923c; }
.how-it-works .section-title { color: var(--clr-white); }
.how-it-works .section-desc { color: rgba(255,255,255,.6); }

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 700px) {
  .steps { flex-direction: row; align-items: stretch; }
  .step-arrow { align-self: center; transform: none; }
}

.step {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 64px; height: 64px;
  background: rgba(249,115,22,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--clr-orange);
}

.step h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: .5rem;
}

.step p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.step-arrow {
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  rotate: 90deg;
}
@media (min-width: 700px) { .step-arrow { rotate: 0deg; } }

.how-cta {
  text-align: center;
}
.how-cta-note {
  margin-top: .75rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.45);
}

/* ── SERVICES SPLIT (canvas + list) ──────────────────────── */
.services-split {
  background: var(--clr-navy);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* Canvas panel */
.services-canvas-col {
  display: flex;
  width: 100%;
  background: var(--clr-navy);
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 900px) {
  .services-split {
    flex-direction: row;
    align-items: flex-start;
  }
  .services-canvas-col {
    width: 50%;
    flex-shrink: 0;
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    padding: var(--space-3xl) 2rem 2rem;
    align-items: flex-start;
    justify-content: center;
  }
}

/* Pravý scrollující sloupec — dost vysoký pro plynulou animaci */
.services-list-col {
  flex: 1;
  padding: var(--space-3xl) var(--space-xl);
  /* 121 snímků × 14px/snímek + 100vh buffer = ~1700px + viewport */
  min-height: calc(100vh + 800px);
}

/* Dark background overrides for services-split */
.services-split .section-tag { color: var(--clr-orange); border-color: rgba(249,115,22,.3); background: rgba(249,115,22,.12); }
.services-split .section-title { color: var(--clr-white); }
.services-split .section-desc { color: rgba(255,255,255,.6); }

.services-split .service-card {
  background: #243352;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.services-split .service-card:hover {
  border-color: var(--clr-orange);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.services-split .service-card h3 { color: #ffffff; font-size: 17px; font-weight: 700; }
.services-split .service-card p  { color: #cbd5e1; }
.services-split .service-body    { padding: 16px 20px; }
.services-split .service-photo   { background: rgba(255,255,255,.05); }

.services-split .service-card--cta {
  background: #1e2d45;
  border-color: rgba(255,255,255,.12);
}

@media (min-width: 900px) {
  .services-list-col { padding: var(--space-3xl) 2.5rem; }
}

.screen-canvas-wrap {
  position: relative;
  width: 72%;
  max-width: 360px;
  aspect-ratio: 714/1280;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,.55);
  background: #000;
}

@media (min-width: 900px) {
  .screen-canvas-wrap {
    width: auto;
    max-width: none;
    height: calc(100vh - var(--nav-h) - var(--space-3xl) - 3rem);
    aspect-ratio: 714/1280;
  }
}

#screen-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.screen-loader {
  position: absolute;
  inset: 0;
  background: var(--clr-navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s;
}
.screen-loader.is-hidden { opacity: 0; pointer-events: none; }

.screen-loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  overflow: hidden;
}
#screen-loader-fill {
  height: 100%;
  background: var(--clr-orange);
  width: 0%;
  transition: width .1s linear;
  border-radius: 3px;
}

/* ── ZAKÁZKY + CENÍK ─────────────────────────────────────── */
.zakazy { background: #f5f5f5; }

/* Zakázky section-desc: větší, tučnější, tmavší */
.zakazy .section-desc {
  font-size: 20px;
  font-weight: 600;
  color: #1e2330;
  margin-bottom: 0;
}

.section-desc-sub {
  font-size: 16px;
  color: #9ca3af;
  margin-top: 8px;
  font-weight: 400;
}

.zk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) { .zk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .zk-grid { grid-template-columns: repeat(2, 1fr); } }

.zk-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.zk-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.zk-photo {
  height: 140px;
  overflow: hidden;
}
.zk-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.zk-card:hover .zk-photo img { transform: scale(1.05); }

.zk-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.zk-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #1e2330;
  margin-bottom: .35rem;
  line-height: 1.4;
  flex: 1;
}
.zk-location {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-xs);
  color: #6b7280;
  margin-bottom: .5rem;
}
.zk-location span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  flex-shrink: 0;
}
.zk-price {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-orange);
}

.zk-footer {
  margin-top: 2rem;
  text-align: center;
}

.zk-footer__min {
  font-size: var(--fs-lg);
  color: #1e2330;
  margin-bottom: .35rem;
}

.zk-footer__sub {
  font-size: var(--fs-sm);
  color: #9ca3af;
  margin-bottom: 2rem;
}

.zk-divider {
  border: none;
  border-top: 2px solid var(--clr-orange);
  width: 40px;
  margin: 0 auto 2rem;
}

.zk-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 860px) { .zk-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .zk-facts { grid-template-columns: repeat(2, 1fr); } }

.zk-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.zk-fact__icon { font-size: 28px; margin-bottom: .3rem; }

.zk-fact__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #1e2330;
}

.zk-fact__text {
  font-size: var(--fs-xs);
  color: #9ca3af;
}

/* OLD PRICING styles (unused — kept for reference) */
.pricing { background: var(--clr-offwhite); }

/* Card grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) { .pc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pc-grid { grid-template-columns: 1fr; } }

.pc-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pc-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-orange);
  box-shadow: var(--shadow-md);
}

.pc-photo {
  height: 140px;
  overflow: hidden;
}
.pc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pc-card:hover .pc-photo img { transform: scale(1.05); }

.pc-body { padding: 1rem 1.25rem 1.25rem; }
.pc-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .4rem;
}
.pc-price {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-orange);
}

.pc-footer { text-align: center; padding-top: .5rem; }
.pc-hr {
  border: none;
  border-top: 2px solid var(--clr-orange);
  width: 60px;
  margin: 0 auto 1.25rem;
}
.pc-min {
  font-size: var(--fs-base);
  color: var(--clr-navy);
  margin-bottom: .5rem;
}
.pc-min strong { color: var(--clr-orange); }
.pc-note {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

/* OLD accordion styles (unused) */
/* Accordiony */
.pricing-accordions {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.pricing-acc {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pricing-acc__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--clr-navy);
  transition: background var(--transition);
}
.pricing-acc__head::-webkit-details-marker { display: none; }
.pricing-acc__head:hover { background: var(--clr-offwhite); }
.pricing-acc[open] .pricing-acc__head { border-bottom: 1px solid var(--clr-border); }

.pricing-acc__icon { font-size: 1.2rem; }
.pricing-acc__title { flex: 1; }
.pricing-acc__arrow {
  color: var(--clr-muted);
  font-size: .85rem;
  transition: transform var(--transition);
}
.pricing-acc[open] .pricing-acc__arrow { transform: rotate(180deg); }

.pricing-acc__list {
  list-style: none;
  padding: .5rem 0;
}
.pricing-acc__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.25rem;
  gap: 1rem;
  border-bottom: 1px solid var(--clr-border);
}
.pricing-acc__list li:last-child { border-bottom: none; }

.pi-label {
  font-size: var(--fs-sm);
  color: var(--clr-text);
}
.pi-price {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-orange);
  white-space: nowrap;
}

/* Footer ceníku */
.pricing-footer {
  max-width: 720px;
  margin-inline: auto;
}

.pricing-min {
  background: var(--clr-navy);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.5rem;
}
.pricing-min__label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.pricing-min__price {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-orange);
}
.pricing-min__note {
  width: 100%;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin: 0;
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  text-align: left;
}
@media (max-width: 480px) { .pricing-info-grid { grid-template-columns: 1fr; } }

.pricing-info-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}
.pricing-info-item svg { color: var(--clr-orange); flex-shrink: 0; margin-top: .15rem; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--clr-navy); }
.gallery .section-tag { color: var(--clr-orange); border-color: rgba(249,115,22,.3); }
.gallery .section-title { color: var(--clr-white); }
.gallery .section-desc { color: rgba(255,255,255,.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.gallery-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,.4); transform: translateY(-3px); border-color: var(--clr-orange); }

.gallery-photo {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.gallery-caption {
  padding: 1rem;
}
.gallery-caption strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: .2rem;
}
.gallery-caption span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.gallery-caption span::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
}

.gallery-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.45);
  font-style: italic;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews { background: #1e2330; }
.reviews .section-tag  { color: var(--clr-orange); background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.3); }
.reviews .section-title { color: #ffffff; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}
.review-card:hover { border-color: var(--clr-orange); box-shadow: 0 8px 32px rgba(0,0,0,.3); }

.review-stars { color: #f59e0b; font-size: var(--fs-md); letter-spacing: .1em; }

.review-card blockquote {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--clr-orange);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: var(--fs-sm); font-weight: 700; color: #ffffff; }
.review-author span { font-size: var(--fs-xs); color: rgba(255,255,255,.5); }

/* ── AREAS ───────────────────────────────────────────────── */
.areas { background: #ffffff; color: #1e2330; }

.areas-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 700px) {
  .areas-wrap {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-areas:
      "img top"
      "img bottom";
    gap: 0 3rem;
    align-items: start;
  }
  .areas-map         { grid-area: img; align-self: center; }
  .areas-list-top    { grid-area: top; }
  .areas-list-bottom { grid-area: bottom; }
}

.areas-map {
  display: block;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
}

.areas-title {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.areas-desc {
  margin-bottom: 1.5rem;
}

.map-tooltip {
  background: var(--clr-navy);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
  font-family: var(--ff-base);
  font-size: 0.72rem;
  font-weight: 600;
  padding: .2em .6em;
  border-radius: 4px;
}

.areas-list-top, .areas-list-bottom { width: 100%; }

.areas-intro {
  font-size: var(--fs-md);
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-sm);
  color: #1e2330;
}
.areas-list em { color: #9ca3af; font-style: normal; font-size: var(--fs-xs); }

.area-dot {
  width: 7px; height: 7px;
  background: var(--clr-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.areas-note {
  font-size: var(--fs-sm);
  color: #9ca3af;
  font-style: italic;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { background: #1e2330; }
.contact .section-tag  { color: var(--clr-orange); background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.3); }
.contact .section-title { color: #ffffff; }
.contact .section-desc  { color: rgba(255,255,255,.6); }

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 700px) {
  .contact-inner { flex-direction: row; align-items: flex-start; text-align: left; gap: 4rem; }
}

.contact-main { flex: 1; }

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1;
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--clr-orange); }
.contact-phone svg { color: var(--clr-orange); flex-shrink: 0; }

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
@media (min-width: 700px) { .contact-channels { justify-content: flex-start; } }

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: .65em 1.4em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-channel--wa {
  background: #dcfce7;
  color: #166534;
}
.contact-channel--wa:hover { background: #bbf7d0; }

.contact-channel--email {
  background: rgba(255,255,255,.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.2);
}
.contact-channel--email:hover { background: rgba(255,255,255,.18); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-hours h3,
.contact-location h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .75rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span { color: rgba(255,255,255,.5); }
.hours-list strong { font-weight: 700; }

.contact-location p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.7;
}
.contact-location svg { color: var(--clr-orange); margin-top: .2rem; flex-shrink: 0; }
.contact-location small { display: block; font-size: var(--fs-xs); opacity: .7; margin-top: .25rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 3rem 2rem;
}
@media (min-width: 600px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .nav-logo { display: inline-block; font-size: var(--fs-md); margin-bottom: .75rem; }
.footer-brand p { font-size: var(--fs-sm); line-height: 1.65; }

.footer-links h4,
.footer-contact h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-links a {
  font-size: var(--fs-sm);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-contact a {
  font-size: var(--fs-sm);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--clr-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}
.footer-bottom p { font-size: var(--fs-xs); }
.footer-bottom a { color: var(--clr-orange); }

.footer-coati {
  display: flex;
  align-items: center;
  gap: .4rem;
  opacity: .5;
  transition: opacity var(--transition);
}
.footer-coati:hover { opacity: .8; }
.footer-coati__logo {
  height: 40px;
  width: auto;
  display: block;
}
.footer-coati span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 60px; height: 60px;
  background: var(--clr-wa);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.fab-tooltip {
  position: absolute;
  right: 72px;
  background: var(--clr-navy);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: .4em .9em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--clr-navy);
  border-right: 0;
}
.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Focus visible ───────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--clr-orange);
  outline-offset: 2px;
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .cookie-banner, .whatsapp-fab, .hero-scroll-hint { display: none; }
}
