/* ────────────────────────────────────────────
   Pavel & Klára Jílkovi — Mireas reality
   Design: "tandem" motiv — dva prolínající se kruhy,
   modrá + oranžová z loga Mireas, Montserrat / Roboto

   Barevné tokeny: *-bright = čistě dekorativní (bloby,
   tečky, rámečky fotek) bez nároku na kontrast textu.
   Základní --c-blue / --c-orange jsou ztmavené varianty
   bezpečné pro text a tlačítka (WCAG AA, ≥4.5:1 na bílé).
──────────────────────────────────────────── */

:root {
  --c-blue-bright:  #4179BB;
  --c-blue:         #3d6fa5;
  --c-blue-dk:      #2b5480;
  --c-blue-pale:    #eaf1fa;

  --c-orange-bright:#E8793A;
  --c-orange-mid:   #c1631f;
  --c-orange:       #a8501c;
  --c-orange-dk:    #8a4116;
  --c-orange-pale:  #fdece0;

  --c-ink:          #22262e;
  --c-ink-soft:     #5c626d;
  --c-muted:        #6b7280;
  --c-bg:           #ffffff;
  --c-bg2:          #f4f6f9;
  --c-rule:         #e3e7ed;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--c-bg); overflow-x: hidden; }

.pj {
  display: block;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: 'Roboto', -apple-system, 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--c-ink);
}

/* NOTE: base a/p/h rules intentionally use bare element selectors (not
   ".pj a" etc) — a class+element selector like ".pj a" outranks single-class
   utility rules like ".btn-blue" in specificity and silently overrides their
   color. Keeping these bare keeps utility classes reliably in control. */
p { margin: 0; line-height: 1.7; color: var(--c-ink-soft); }
a { text-decoration: none; color: inherit; }

.c-blue   { color: var(--c-blue-bright); }
.c-orange { color: var(--c-orange-mid); }

/* eyebrow + duo dots (tandem motif) */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light  { color: rgba(255,255,255,0.95); }

.dot-duo { display: inline-flex; align-items: center; }
.dot-duo i {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  display: inline-block; margin-right: -0.18rem;
}
.dot-duo i:first-child { background: var(--c-blue-bright); }
.dot-duo i:last-child   { background: var(--c-orange-bright); }
.dot-duo--light i:first-child { background: #fff; }
.dot-duo--light i:last-child  { background: var(--c-orange-bright); }

/* placeholder photo blocks */
.placeholder {
  position: relative;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 14px);
}
.placeholder::after {
  content: attr(data-ph);
  position: absolute;
  inset: auto auto 1rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.28);
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
}
.placeholder--blue   { background-color: #dbe6f3; }
.placeholder--orange { background-color: #f6ddc8; }

/* ────────────────────────────────────────────
   BUTTONS — rounded-rect, not pill
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

.btn-blue { background: var(--c-blue); color: #fff; }
.btn-blue:hover { background: var(--c-blue-dk); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(61,111,165,0.32); }

.btn-outline-orange { background: transparent; color: var(--c-orange); border-color: var(--c-orange); }
.btn-outline-orange:hover { background: var(--c-orange-pale); color: var(--c-orange-dk); border-color: var(--c-orange-dk); transform: translateY(-2px); }

.btn-outline-blue { background: transparent; color: var(--c-blue); border-color: var(--c-blue); }
.btn-outline-blue:hover { background: var(--c-blue-pale); color: var(--c-blue-dk); border-color: var(--c-blue-dk); transform: translateY(-2px); }

.link-light {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem; font-weight: 700; font-size: 0.92rem;
  color: #fff; border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 0.15rem; transition: gap 0.2s, border-color 0.2s;
}
.link-light:hover { gap: 0.7rem; border-color: #fff; }

.inline-link { color: var(--c-blue); font-weight: 700; border-bottom: 1.5px solid rgba(61,111,165,0.35); transition: border-color 0.2s, color 0.2s; }
.inline-link:hover { border-color: var(--c-blue-dk); color: var(--c-blue-dk); }

/* ────────────────────────────────────────────
   NAV — static/sticky, light
──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-rule);
}

.nav__brand { display: flex; align-items: center; gap: 0.9rem; }

.brand-id { display: flex; flex-direction: column; line-height: 1.22; }
.brand-id__line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-id__line .t-blue   { color: var(--c-blue); }
.brand-id__line .t-orange { color: var(--c-orange); }
.brand-id__tag {
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 0.66rem;
  color: var(--c-ink-soft);
  margin-top: 0.15rem;
}

.brand-divider { display: inline-block; width: 1px; height: 2.1rem; background: var(--c-rule); flex-shrink: 0; }

/* Mireas reality — text-based logo recreation (barvy dle skutečného loga) */
.mireas-logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.mireas-logo__word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: #6b6f76;
}
.mireas-logo__sub { display: flex; align-items: center; gap: 0.2rem; margin-top: 0.28rem; }
.mireas-logo__sub em {
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  color: #7d818a;
  margin: 0 0.15rem;
}
.m-dot { width: 0.32rem; height: 0.32rem; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.m-dot--orange { background: var(--c-orange-bright); }
.m-dot--blue   { background: var(--c-blue-bright); }

.mireas-logo--sm .mireas-logo__word { font-size: 0.76rem; }
.mireas-logo--sm .mireas-logo__sub em { font-size: 0.64rem; }
.mireas-logo--sm .m-dot { width: 0.26rem; height: 0.26rem; }

@media (max-width: 34rem) {
  .brand-divider { display: none; }
  .mireas-logo { display: none; }
  .brand-id__tag { display: none; }
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links > li > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav__links > li > a:hover,
.nav__links > li > a.is-active { color: var(--c-ink); border-color: var(--c-orange); }

.chevron { display: inline-block; font-size: 0.7em; margin-left: 0.15em; transition: transform 0.2s; }
.nav__item--drop:hover .chevron { transform: rotate(180deg); }
.nav__item--drop { position: relative; }
.nav__item--drop::after { content: ''; position: absolute; top: 100%; left: -1rem; right: -1rem; height: 0.8rem; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(20,25,35,0.14);
  border: 1px solid var(--c-rule);
  min-width: 230px;
  z-index: 300;
}
.nav__item--drop:hover .nav__dropdown,
.nav__item--drop:focus-within .nav__dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

.nav__dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav__dropdown a:hover { background: var(--c-blue-pale); color: var(--c-blue-dk); border-left-color: var(--c-orange); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--c-ink); }
.nav__li-cta { display: none; }

@media (max-width: 64rem) { .nav__links { gap: 1rem; } }

@media (max-width: 58rem) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .hamburger { display: flex; }
  .nav__li-cta { display: block; }

  .nav__backdrop {
    display: none;
    position: fixed;
    inset: 4.6rem 0 0 0;
    background: rgba(15, 18, 26, 0.4);
    z-index: 198;
  }
  .nav--open .nav__backdrop { display: block; }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 4.6rem;
    left: 0; right: 0;
    max-height: calc(100vh - 4.6rem);
    overflow-y: auto;
    background: #fff;
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--c-rule);
    box-shadow: 0 18px 40px rgba(15, 18, 26, 0.18);
    z-index: 199;
  }
  .nav--open .nav__links > li > a {
    display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--c-rule); font-size: 1rem;
  }
  .nav--open .nav__links > li:last-child > a { border-bottom: none; }
  .nav__item--drop::after { display: none; }
  .nav__dropdown { display: none !important; }
  .chevron { display: none; }
  .acc-header .chevron { display: inline-block; }
  .nav--open .nav__li-cta { padding-top: 0.75rem; }
  .nav--open .nav__li-cta > a {
    display: block; text-align: center; background: var(--c-blue); color: #fff;
    font-weight: 700; padding: 0.75rem 1.5rem; border-radius: 10px; border-bottom: none;
  }
}

/* ────────────────────────────────────────────
   HERO — light, two photo cards + blobs
──────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../images/hero/lysa-namesti.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.15;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.hero__blob--blue   { width: 26rem; height: 26rem; background: var(--c-blue-bright);   top: -8rem; left: -10rem; }
.hero__blob--orange { width: 22rem; height: 22rem; background: var(--c-orange-bright); bottom: -8rem; right: -6rem; }

.hero__text { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1.3rem;
  text-wrap: balance;
}

.hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 56ch;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__visual { position: relative; z-index: 1; }

.photo-duo { position: relative; width: 100%; max-width: 30rem; margin: 0 auto; aspect-ratio: 5/4; }

.photo-card {
  position: absolute;
  width: 54%;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(20,25,35,0.16);
  top: 8%;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card--pavel {
  left: 0;
  border: 4px solid var(--c-blue-bright);
  background-color: #dbe6f3;
  transform: rotate(-3deg);
  z-index: 1;
}
.photo-card--klara {
  right: 0;
  top: 18%;
  border: 4px solid var(--c-orange-bright);
  background-color: #f6ddc8;
  transform: rotate(3deg);
  z-index: 2;
}

.tandem-badge {
  position: absolute;
  top: 88%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  text-align: center;
  box-shadow: 0 14px 32px rgba(20,25,35,0.2);
  z-index: 3;
  min-width: 5.2rem;
}
.tandem-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--c-blue), var(--c-orange-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tandem-badge span { display: block; font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-ink-soft); margin-top: 0.2rem; }

@media (max-width: 62rem) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { order: -1; }
  .photo-duo { max-width: 22rem; }
  .tandem-badge { padding: 0.6rem 0.8rem; min-width: 4.4rem; }
  .tandem-badge strong { font-size: 1.2rem; }
  .tandem-badge span { font-size: 0.58rem; }
}

/* ────────────────────────────────────────────
   STATS STRIP
──────────────────────────────────────────── */
.stats-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 5vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-pill {
  position: relative;
  background: var(--c-bg2);
  border-radius: 14px;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  overflow: hidden;
}
.stat-pill__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.stat-pill__bar--blue   { background: var(--c-blue-bright); }
.stat-pill__bar--orange { background: var(--c-orange-bright); }
.stat-pill strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--c-ink);
  line-height: 1;
}
.stat-pill span { display: block; font-size: 0.84rem; margin-top: 0.4rem; color: var(--c-ink-soft); }

@media (max-width: 40rem) { .stats-strip { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────
   SECTION SHELL
──────────────────────────────────────────── */
.section { max-width: 1240px; margin: 0 auto; padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 3.5rem); position: relative; }
#hodnoceni-pavel, #hodnoceni-klara { scroll-margin-top: 6.5rem; }
.section__head { text-align: center; max-width: 62ch; margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem); }
.section__head--wide { max-width: 100%; }
.section__head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); text-wrap: balance; }
.section__head--wide h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); text-wrap: balance; }
.section__head--wide .section__lead { max-width: 70ch; margin-left: auto; margin-right: auto; }
.section__lead { margin-top: 1rem; font-size: 1rem; }
.section__lead--left { text-align: left; }

/* ────────────────────────────────────────────
   SERVICES ACCORDION
──────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; position: relative; z-index: 1; }

.acc-item {
  border: 1px solid var(--c-rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.acc-item.is-open { border-color: var(--c-blue); box-shadow: 0 12px 28px rgba(61,111,165,0.12); }

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Roboto', sans-serif;
}

.acc-icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--c-blue-pale);
  color: var(--c-blue);
  transition: background 0.2s, color 0.2s;
}
.acc-item:nth-child(even) .acc-icon { background: var(--c-orange-pale); color: var(--c-orange-dk); }
.acc-item.is-open .acc-icon { background: var(--c-blue); color: #fff; }
.acc-item.is-open:nth-child(even) .acc-icon { background: var(--c-orange); color: #fff; }
.acc-icon svg { width: 1.3rem; height: 1.3rem; }

.acc-title {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-ink);
}

.acc-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}

.acc-header .chevron { font-size: 0.95rem; color: var(--c-ink-soft); transition: transform 0.25s; }
.acc-item.is-open .acc-header .chevron { transform: rotate(180deg); color: var(--c-blue); }

.acc-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.acc-item.is-open .acc-panel-wrap { grid-template-rows: 1fr; }
.acc-panel {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.4rem 1.9rem 4.35rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.acc-item.is-open .acc-panel { opacity: 1; transition-delay: 0.1s; }
.acc-panel p { font-size: 0.94rem; margin-bottom: 0.85rem; }
.acc-link { display: inline-block; font-weight: 700; font-size: 0.9rem; color: var(--c-blue); }
.acc-item:nth-child(even) .acc-link { color: var(--c-orange); }
.acc-link:hover { text-decoration: underline; }

/* FAQ variant — no icon/number, text-only header */
.accordion--faq .acc-title { font-size: 0.98rem; }
.accordion--faq .acc-panel { padding-left: 1.4rem; }

@media (max-width: 30rem) {
  .acc-panel { padding-left: 1.4rem; }
}

/* FAQ tabs — switch between prodávající / kupující / pronajímatelé */
.faq-tabs { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin: 0 0 2rem; }
.faq-tab {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--c-rule);
  background: var(--c-bg);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-tab:hover { border-color: var(--c-blue); color: var(--c-blue); }
.faq-tab.is-active { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.accordion[hidden] { display: none; }

/* Glossary — grouped accordion (Slovník pojmů) */
.glossary-group__title {
  font-size: 1.15rem;
  color: var(--c-blue);
  margin: 2.75rem 0 1.1rem;
}
.glossary-group:first-child .glossary-group__title { margin-top: 0; }
.glossary-group[hidden] { display: none; }

.glossary-search {
  max-width: 34rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.glossary-search__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--c-ink);
}
.glossary-search__field { position: relative; }
.glossary-search__field svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  color: var(--c-muted);
  pointer-events: none;
}
.glossary-search__field input {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 2.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--c-rule);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.glossary-search__field input::placeholder { color: var(--c-muted); }
.glossary-search__field input:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(61,111,165,0.15);
}

.glossary-empty {
  max-width: 34rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--c-blue-pale);
}
.glossary-empty p { margin-bottom: 1.25rem; font-size: 0.98rem; color: var(--c-ink-soft); }


/* ────────────────────────────────────────────
   CTA — contact duo cards
──────────────────────────────────────────── */
.cta {
  overflow: hidden;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, var(--c-blue-pale) 0%, #fff 32%, #fff 68%, var(--c-orange-pale) 100%);
}
.cta .hero__blob { opacity: 0.1; }
.cta .section__head--wide { max-width: 820px; margin-left: auto; margin-right: auto; }

.contact-duo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.contact-duo__sep { display: flex; justify-content: center; }
.contact-duo__sep .dot-duo i { width: 0.65rem; height: 0.65rem; }

.contact-card {
  position: relative;
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20,25,35,0.07);
  border-top: 4px solid var(--c-blue-bright);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(20,25,35,0.12); }
.contact-card--orange { border-top-color: var(--c-orange-bright); }

.contact-avatar {
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.contact-avatar--blue   { background: var(--c-blue); }
.contact-avatar--orange { background: var(--c-orange); }

.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.contact-card > p { font-size: 0.84rem; margin-bottom: 1.1rem; }
.contact-line {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.9rem; color: var(--c-blue);
  margin-top: 0.5rem;
}
.contact-line svg { width: 1rem; height: 1rem; flex-shrink: 0; opacity: 0.8; }
.contact-card--orange .contact-line { color: var(--c-orange); }
.contact-line:hover { text-decoration: underline; }

.cta__submit { position: relative; z-index: 1; text-align: center; margin-top: 2.5rem; }

@media (max-width: 34rem) {
  .contact-duo { grid-template-columns: 1fr; }
  .contact-duo__sep { display: none; }
}

/* ────────────────────────────────────────────
   NEWS — 6 demo items + archiv
──────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.news-item:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,25,35,0.1); border-color: var(--c-blue-bright); }

.news-item__thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg2); }
.news-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.news-item:hover .news-item__thumb img { transform: scale(1.05); }
.news-empty { text-align: center; color: var(--c-muted); font-size: 0.96rem; }

.news-item__body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-item__date { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; color: var(--c-muted); text-transform: uppercase; }
.news-item__body h3 {
  font-size: 1.02rem;
  margin: 0.5rem 0 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__body p {
  font-size: 0.86rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
.news-item__link { margin-top: auto; font-weight: 700; font-size: 0.86rem; color: var(--c-blue); }
.news-item:nth-child(3n+2) .news-item__link { color: var(--c-orange); }

.news-archive { text-align: center; margin-top: 2.5rem; }

@media (max-width: 64rem) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 40rem) { .news-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.foot {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.25rem clamp(1.5rem, 5vw, 3.5rem) 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--c-rule);
}
.foot__left { display: flex; flex-direction: column; gap: 0.85rem; justify-self: start; }
.foot__brand { display: flex; align-items: center; gap: 0.65rem; }

.brand-id--sm .brand-id__line { font-size: 0.66rem; }

.foot__social { display: flex; gap: 0.6rem; }
.foot__social-link {
  width: 1.9rem; height: 1.9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-bg2);
  color: var(--c-ink-soft);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.foot__social-link svg { width: 1rem; height: 1rem; }
.foot__social-link--blue:hover   { background: var(--c-blue-pale);   color: var(--c-blue);   transform: translateY(-2px); }
.foot__social-link--orange:hover { background: var(--c-orange-pale); color: var(--c-orange); transform: translateY(-2px); }

.foot__links { display: grid; grid-template-columns: repeat(3, auto); gap: 0.6rem 2.25rem; justify-content: center; justify-self: center; }
.foot__links a { font-size: 0.84rem; color: var(--c-ink-soft); transition: color 0.2s; }
.foot__links a:hover { color: var(--c-orange); }
.foot__legal { font-size: 0.78rem; color: var(--c-muted); justify-self: end; text-align: right; }

@media (max-width: 52rem) {
  .foot { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
  .foot__left, .foot__links, .foot__legal { justify-self: center; }
  .foot__left { align-items: center; }
  .foot__links { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
}

/* ────────────────────────────────────────────
   PAGE HERO — light intro band for subpages
──────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow { justify-content: center; }
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 34ch;
  margin: 0 auto 1.1rem;
  text-wrap: balance;
}
.page-hero .lead {
  max-width: 66ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}
.page-hero--left { text-align: left; }
.page-hero--left h1, .page-hero--left .lead { margin-left: 0; margin-right: 0; }
.page-hero--left .eyebrow { justify-content: flex-start; }

/* ────────────────────────────────────────────
   PROFILE — bio blocks (O nás)
──────────────────────────────────────────── */
.profile {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--c-rule);
}
.profile:last-child { border-bottom: none; padding-bottom: 0; }
/* explicit grid-column placement (not `order`) + mirrored track sizes, so the
   photo always sits in the narrower 0.85fr track — `order` alone reshuffles
   grid auto-placement into the *same* physical tracks, handing the photo the
   wider 1.15fr track on reversed rows and making it visibly bigger */
.profile--reverse { grid-template-columns: 1.15fr 0.85fr; }
.profile__photo { grid-column: 1; grid-row: 1; }
.profile__body  { grid-column: 2; grid-row: 1; }
.profile--reverse .profile__photo { grid-column: 2; }
.profile--reverse .profile__body  { grid-column: 1; }

.profile__photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(20,25,35,0.14);
  border: 4px solid transparent;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.profile--pavel .profile__photo { background: var(--c-blue-pale); border-color: var(--c-blue-bright); }
.profile--klara .profile__photo { background: var(--c-orange-pale); border-color: var(--c-orange-bright); }
.profile__photo img {
  width: 88%;
  height: auto;
  max-height: 97%;
  object-fit: contain;
  display: block;
}
.profile__role {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.profile--pavel .profile__role { color: var(--c-blue); }
.profile--klara .profile__role { color: var(--c-orange); }
.profile__body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 1rem; }
.profile__body p { margin-bottom: 1rem; font-size: 0.96rem; }
.profile__body p:last-child { margin-bottom: 0; }

@media (max-width: 48rem) {
  .profile, .profile--reverse { grid-template-columns: 1fr; }
  .profile__photo, .profile--reverse .profile__photo,
  .profile__body,  .profile--reverse .profile__body { grid-column: 1; }
  .profile__photo, .profile--reverse .profile__photo { grid-row: 1; }
  .profile__body,  .profile--reverse .profile__body  { grid-row: 2; }
  .profile__photo { max-width: 18rem; margin: 0 auto; }
}

/* ────────────────────────────────────────────
   FEATURE GRID — diferenciátory (Proč prodat s námi)
──────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: var(--c-bg2);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--c-rule);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(20,25,35,0.08); }
.feature-card__icon {
  width: 2.8rem; height: 2.8rem;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  background: var(--c-blue-pale);
  color: var(--c-blue);
}

.feature-card--media { padding-top: 0; overflow: hidden; }
.feature-card__media {
  margin: 0 -1.75rem 1.25rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature-card__media img,
.feature-card__media video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.feature-card__media iframe { width: 100%; height: 100%; border: 0; display: block; }
.feature-card--media .feature-card__icon { margin-top: -1.4rem; position: relative; z-index: 1; box-shadow: 0 8px 20px rgba(20,25,35,0.14); }
.feature-card:nth-child(even) .feature-card__icon { background: var(--c-orange-pale); color: var(--c-orange); }
.feature-card__icon svg { width: 1.4rem; height: 1.4rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.55rem; }
.feature-card p { font-size: 0.9rem; }

.motto-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; max-width: 46rem; margin: 0 auto; padding: 0; }
.motto-list li { list-style: none; }
.motto-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-bg2);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  overflow: hidden;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.motto-list svg {
  width: 1.15rem; height: 1.15rem;
  color: var(--c-orange);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.motto-list span { flex: 1; }
.motto-list a::after {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
  color: var(--c-orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.22s ease, transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}
.motto-list a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(20,25,35,0.1);
  background: var(--c-orange-pale);
  border-color: rgba(168,80,28,0.22);
  color: var(--c-orange-dk);
}
.motto-list a:hover svg { transform: scale(1.18) rotate(-6deg); }
.motto-list a:hover::after { opacity: 1; transform: translateX(0); }
.motto-list a:active { transform: translateY(-1px); }

@media (max-width: 56rem) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 34rem) { .feature-grid { grid-template-columns: 1fr; } .motto-list { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────
   TESTIMONIALS — Reference
──────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.testi-card {
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-rule);
  border-radius: 16px;
  padding: 1.9rem 1.75rem 1.6rem;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -0.6rem; left: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--c-blue-pale);
  line-height: 1;
  z-index: 0;
}
.testi-card--orange::before { color: var(--c-orange-pale); }
.testi-card__quote { position: relative; z-index: 1; font-size: 0.94rem; line-height: 1.65; margin-bottom: 1.1rem; }
.testi-card__author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--c-ink); }
.testi-card__meta { font-size: 0.8rem; color: var(--c-muted); margin-top: 0.15rem; }

.testi-section-head { display: flex; align-items: center; gap: 0.75rem; margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; }
.testi-section-head .contact-avatar { margin: 0; width: 2.6rem; height: 2.6rem; font-size: 0.86rem; }
.testi-section-head h2 { font-size: 1.3rem; }

.testi-more { text-align: center; margin-top: 1.75rem; }

@media (max-width: 48rem) { .testi-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }

.info-card {
  background: var(--c-bg2);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.1rem;
}
.info-card h3 { font-size: 0.98rem; margin-bottom: 0.9rem; }
.info-card .contact-line { justify-content: flex-start; color: var(--c-ink-soft); font-weight: 500; }
.info-card .contact-line:first-of-type { margin-top: 0; }
.info-card address { font-style: normal; font-size: 0.92rem; line-height: 1.7; color: var(--c-ink-soft); }

.info-card__person { display: flex; align-items: center; gap: 0.75rem; }
.info-card__person img { width: 2.6rem; height: 2.6rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.info-card__map-btn { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem; font-size: 0.86rem; padding: 0.55rem 1rem; }
.info-card__map-btn svg { width: 1.05rem; height: 1.05rem; }

.form { display: flex; flex-direction: column; gap: 1rem; }
.form[hidden] { display: none; }
.form label { font-size: 0.84rem; font-weight: 700; color: var(--c-ink); margin-bottom: 0.35rem; display: block; }
.form input, .form textarea {
  width: 100%;
  border: 1.5px solid var(--c-rule);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-bg);
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--c-blue); }
.form textarea { min-height: 8rem; resize: vertical; }
.form__consent { font-size: 0.82rem; color: var(--c-muted); }

.form__success {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--c-blue-pale);
  border: 1.5px solid rgba(61,111,165,0.25);
  color: var(--c-blue-dk);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.25rem;
}
.form__success[hidden] { display: none; }
.form__success::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.6rem; height: 1.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 56rem) { .contact-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────────────────
   SERVICE DETAIL — Naše služby (alternující bloky)
──────────────────────────────────────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--c-rule);
  scroll-margin-top: 6rem;
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail--reverse .svc-detail__visual { order: 2; }

.svc-detail__visual {
  aspect-ratio: 1;
  border-radius: 20px;
  display: grid;
  place-items: center;
}
.svc-detail--blue .svc-detail__visual   { background: var(--c-blue-pale);   color: var(--c-blue); }
.svc-detail--orange .svc-detail__visual { background: var(--c-orange-pale); color: var(--c-orange); }
.svc-detail__visual svg { width: 34%; height: 34%; }

.svc-detail__visual--photo { position: relative; overflow: hidden; background: var(--c-bg2); }
.svc-detail__visual--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-detail__badge {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20,25,35,0.18);
}
.svc-detail__badge svg { width: 45%; height: 45%; }
.svc-detail--blue .svc-detail__badge { color: var(--c-blue); }
.svc-detail--orange .svc-detail__badge { color: var(--c-orange); }

.svc-detail__num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  margin-bottom: 0.6rem;
}
.svc-detail__body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.9rem; }
.svc-detail__body > p { margin-bottom: 1.25rem; font-size: 0.98rem; }

.svc-detail__list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.svc-detail__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--c-ink-soft); }
.svc-detail__list svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.svc-detail--blue .svc-detail__list svg   { color: var(--c-blue); }
.svc-detail--orange .svc-detail__list svg { color: var(--c-orange); }

@media (max-width: 48rem) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail--reverse .svc-detail__visual { order: 0; }
  .svc-detail__visual { max-width: 14rem; margin: 0 auto; }
}

/* ────────────────────────────────────────────
   REST BAND — "Nejsme stroje" + Galerie, full-bleed tint
   (subtle background so it visibly reads as its own band,
   distinct from the white profile section above/below)
──────────────────────────────────────────── */
.rest-band {
  background: var(--c-bg2);
}
.rest-band__gallery { margin-top: clamp(2rem, 4vw, 3rem); }

/* ────────────────────────────────────────────
   GALLERY — masonry (O nás)
──────────────────────────────────────────── */
.gallery {
  column-count: 3;
  column-gap: 1rem;
}
.gallery__item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--c-bg2);
  cursor: zoom-in;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,25,35,0.22) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery__item:hover::after { opacity: 1; }

@media (max-width: 56rem) { .gallery { column-count: 2; } }
@media (max-width: 30rem) { .gallery { column-count: 1; } }

/* ────────────────────────────────────────────
   GALLERY — strip / pás (Reference)
──────────────────────────────────────────── */
.gallery--strip {
  column-count: unset;
  column-gap: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.75rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  scrollbar-width: thin;
  scrollbar-color: var(--c-blue-bright) transparent;
}
.gallery--strip.gallery--orange { scrollbar-color: var(--c-orange-bright) transparent; }
.gallery--strip .gallery__item {
  flex: 0 0 auto;
  width: clamp(210px, 26vw, 300px);
  break-inside: unset;
  margin-bottom: 0;
  scroll-snap-align: start;
}
.gallery--strip .gallery__item img {
  height: 200px;
  object-fit: cover;
}
.gallery--strip::-webkit-scrollbar { height: 6px; }
.gallery--strip::-webkit-scrollbar-track { background: transparent; }
.gallery--strip::-webkit-scrollbar-thumb { background: var(--c-blue-bright); border-radius: 3px; }
.gallery--strip.gallery--orange::-webkit-scrollbar-thumb { background: var(--c-orange-bright); }

.gallery-strip-wrap { position: relative; }
.strip-nav {
  position: absolute;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--c-blue);
  box-shadow: 0 8px 22px rgba(20,25,35,0.16);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.strip-nav svg { width: 1.3rem; height: 1.3rem; }
.strip-nav:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 10px 26px rgba(20,25,35,0.22); }
.strip-nav--prev { left: -1.25rem; }
.strip-nav--next { right: -1.25rem; }
.strip-nav--orange { color: var(--c-orange); }

@media (max-width: 48rem) {
  .strip-nav { display: none; }
}

/* ────────────────────────────────────────────
   LIGHTBOX
──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,12,18,0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox__img {
  max-width: min(88vw, 62rem);
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.22); }

.lightbox__close { top: 1.25rem; right: 1.25rem; width: 2.75rem; height: 2.75rem; }
.lightbox__close svg { width: 1.2rem; height: 1.2rem; }

.lightbox__nav { top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; }
.lightbox__nav svg { width: 1.4rem; height: 1.4rem; }
.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

@media (max-width: 40rem) {
  .lightbox__nav { width: 2.4rem; height: 2.4rem; }
  .lightbox__close { width: 2.4rem; height: 2.4rem; top: 0.75rem; right: 0.75rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

/* ────────────────────────────────────────────
   AGENT HUB — rozcestník nabídky podle makléře
──────────────────────────────────────────── */
.agent-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 46rem;
  margin: 0 auto;
}
.agent-hub__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.5rem) 2rem;
  border-top: 4px solid var(--c-blue-bright);
  box-shadow: 0 10px 30px rgba(20,25,35,0.07);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease;
}
.agent-hub__card--orange { border-top-color: var(--c-orange-bright); }
.agent-hub__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,25,35,0.12); }

.agent-hub__avatar {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.agent-hub__card--blue .agent-hub__avatar   { background: var(--c-blue); }
.agent-hub__card--orange .agent-hub__avatar { background: var(--c-orange); }

.agent-hub__card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.agent-hub__card p  { font-size: 0.9rem; margin-bottom: 1.5rem; }

.agent-hub__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-blue);
  transition: gap 0.22s ease;
}
.agent-hub__card--orange .agent-hub__cta { color: var(--c-orange); }
.agent-hub__card:hover .agent-hub__cta { gap: 0.7rem; }

@media (max-width: 34rem) {
  .agent-hub { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────
   MIREAS EMBED — vložená nabídka nemovitostí
──────────────────────────────────────────── */
.mireas-embed-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c-rule);
  box-shadow: 0 10px 30px rgba(20,25,35,0.07);
}
.mireas-embed {
  width: 100%;
  height: 85vh;
  min-height: 700px;
  border: none;
  display: block;
}
.mireas-embed-fallback {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--c-muted);
}
.mireas-embed-fallback a { color: var(--c-blue); font-weight: 700; }
.mireas-embed-fallback a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────
   LEGAL — Ochrana osobních údajů
──────────────────────────────────────────── */
.legal { max-width: 860px; }
.legal__list {
  counter-reset: legal;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.legal__list > li {
  counter-increment: legal;
  position: relative;
  padding-left: 2.4rem;
}
.legal__list > li::before {
  content: counter(legal) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--c-blue);
}
.legal__list p { font-size: 0.96rem; line-height: 1.75; color: var(--c-ink-soft); }
.legal__sublist { margin: 0.75rem 0 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal__sublist li { font-size: 0.95rem; line-height: 1.6; color: var(--c-ink-soft); }
.legal__contact { margin-top: 2.25rem; font-size: 0.96rem; line-height: 1.75; color: var(--c-ink-soft); padding-top: 1.75rem; border-top: 1px solid var(--c-rule); }
.legal__signature { margin-top: 1.5rem; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--c-ink); }

/* ────────────────────────────────────────────
   MINI CTA — lightweight inline banner
──────────────────────────────────────────── */
.mini-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  background: var(--c-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.mini-cta p { font-weight: 700; font-family: 'Montserrat', sans-serif; color: var(--c-ink); font-size: 1rem; }

/* ────────────────────────────────────────────
   TIMELINE — Průvodce prodejem krok za krokem
──────────────────────────────────────────── */
.timeline { max-width: 720px; margin: 0 auto; }
.timeline__step { position: relative; padding: 0 0 2.75rem 4.25rem; }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.375rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: var(--c-rule);
}
.timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  z-index: 1;
}
.timeline__step:nth-child(odd) .timeline__marker { background: var(--c-blue); }
.timeline__step:nth-child(even) .timeline__marker { background: var(--c-orange); }
.timeline__title { font-size: 1.08rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.55rem; }
.timeline__icon { flex-shrink: 0; width: 1.2rem; height: 1.2rem; }
.timeline__icon svg { width: 100%; height: 100%; display: block; }
.timeline__step:nth-child(odd) .timeline__icon svg { color: var(--c-blue); }
.timeline__step:nth-child(even) .timeline__icon svg { color: var(--c-orange); }
.timeline__step p { font-size: 0.95rem; }

@media (max-width: 30rem) {
  .timeline__step { padding-left: 3.5rem; }
  .timeline__marker { width: 2.4rem; height: 2.4rem; font-size: 0.95rem; }
  .timeline__step:not(:last-child)::after { left: 1.2rem; top: 2.4rem; }
}

/* ────────────────────────────────────────────
   SCROLL REVEAL — lightweight, transform+opacity only,
   class added purely via JS so content stays visible
   if JS fails; fully disabled under prefers-reduced-motion
──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* ────────────────────────────────────────────
   COOKIES — nevtíravé nastavení s možností změny v patičce
──────────────────────────────────────────── */
.cookie-settings { appearance: none; border: 0; padding: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 0.16em; cursor: pointer; }
.cookie-settings:hover, .cookie-settings:focus-visible { color: var(--c-blue); }
.cookie-bar { position: fixed; z-index: 1000; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); left: clamp(1rem, 3vw, 2rem); display: none; max-width: 44rem; margin: 0 auto; padding: 1.1rem 1.2rem; border: 1px solid var(--c-rule); border-radius: 16px; background: rgba(255,255,255,0.98); box-shadow: 0 18px 50px rgba(20,25,35,0.2); gap: 1rem; align-items: center; font-family: 'Roboto', -apple-system, 'Segoe UI', Arial, sans-serif; }
.cookie-bar.is-visible { display: flex; }
.cookie-bar:focus { outline: 3px solid rgba(31, 103, 184, 0.34); outline-offset: 3px; }
.cookie-bar__copy { flex: 1 1 18rem; }
.cookie-bar__copy strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.94rem; color: var(--c-ink); }
.cookie-bar__copy p { margin: 0.28rem 0 0; color: var(--c-ink-soft); font-size: 0.84rem; line-height: 1.45; }
.cookie-bar__status { display: block; margin-top: 0.36rem; font-size: 0.78rem; color: var(--c-ink-soft); }
.cookie-bar__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 0.55rem; }
.cookie-bar__actions .btn { white-space: nowrap; }
@media (max-width: 36rem) { .cookie-bar { padding: 1rem; } .cookie-bar__actions { width: 100%; } .cookie-bar__actions .btn { flex: 1 1 10rem; } }
