/* ============================================================
   Original Decor — prewpdemo (podklad pro WP šablonu / vlastní CMS)
   Vychází z „podklad šablony" (demo v2), rozšířeno o nové sekce.
   ============================================================ */

:root {
  --copper: #b67041;
  --copper-btn: #bd7c4c;
  --copper-light: #d9a57c;
  --copper-text: #9a5a34;   /* měděná pro drobný text – kontrast ≥ 4.5 */
  --muted-text: #6f6a5e;
  --ink: #1c1a15;
  --dark: #1a1813;
  --dark-2: #211f18;
  --dark-3: #16140f;
  --heading: #211e18;
  --text: #56514a;
  --text-light: #b4ada0;
  --muted: #8c8578;
  --paper: #f4f1ec;
  --paper-2: #efece5;
  --paper-3: #e9e4db;
  --line: #ded7ca;
  --line-dark: #2c2921;
  --container: 1220px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* velmi široké obrazovky bez HiDPI škálování (2K / 4K při 1:1) — web se plynule zvětší */
@media (min-width: 2000px) { body { zoom: 1.3; } }
@media (min-width: 2800px) { body { zoom: 1.7; } }
@media (min-width: 3600px) { body { zoom: 2; } }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.accent { color: var(--copper); }

/* ---------- Nadpisy ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--copper-text);
  font-weight: 600;
  margin-bottom: 26px;
}
.projects .eyebrow, .videos .eyebrow, .cta .eyebrow, .page-hero .eyebrow, .section-head--light .eyebrow { color: var(--copper-light); }
.section-title {
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.16;
  color: var(--heading);
  letter-spacing: -.01em;
}
.section-title--light { color: #f1ece3; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 20px; font-size: 15px; }
.section-head--light p { color: var(--text-light); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: inherit;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s var(--ease);
}
.btn .material-icons-outlined { font-size: 17px; transition: transform .3s var(--ease); }
.btn:hover .material-icons-outlined { transform: translateX(5px); }
.btn--sm { padding: 12px 26px; font-size: 11px; }
.btn--dark { background: var(--ink); color: #f2ede4; }
.btn--dark:hover { background: #000; }
.btn--primary { background: var(--copper-text); color: #fff; }
.btn--primary:hover { background: #874d2c; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--copper); }
.btn--outline:hover { background: var(--copper); color: #fff; }
.btn--outline-light { background: transparent; color: #f1ece3; border-color: rgba(241,236,227,.4); }
.btn--outline-light:hover { border-color: var(--copper); color: var(--copper); }

/* ---------- Šipkový odkaz ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e8e2d6;
  white-space: nowrap;
}
.link-arrow--dark { color: var(--copper-text); }
.link-arrow .material-icons-outlined { font-size: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover .material-icons-outlined { transform: translateX(5px); }

/* ============================================================
   HLAVIČKA
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.site-header.is-fixed {
  position: fixed;
  background: rgba(244,241,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  animation: slideDown .4s var(--ease);
}
.site-header.is-fixed .header__inner { height: 78px; }
.site-header.is-fixed .brand__mark { height: 48px; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 116px;
  transition: height .3s var(--ease);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__mark { height: 64px; width: auto; transition: height .3s var(--ease); }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav__link {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s;
}
.nav__link:hover, .nav__link.is-active { color: var(--copper); }
.header__cta { margin-left: 10px; }
@media (min-width: 1025px) {
  .header__cta {
    background: var(--copper-text);
    color: #fff;
    border-color: var(--copper-text);
  }
  .header__cta:hover { background: #874d2c; border-color: #874d2c; }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px; margin-left: 4px;
  z-index: 95;
}
@media (max-width: 1024px) { .nav-toggle { display: flex; } }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.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); }

/* podstránky – hlavička na světlém pásu */
.site-header--solid { position: relative; background: var(--paper); border-bottom: 1px solid var(--line); }

/* ============================================================
   HERO (slider)
   ============================================================ */
.hero { background: var(--paper); padding-top: 116px; } /* hero začíná až pod hlavičkou; #uvod = vršek stránky */
.hero__grid {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 760px;
}
.hero {
  /* levý okraj obsahu = levý okraj .container (číslování i text se odvíjí od něj, ne od šířky okna) */
  /* 100 % = šířka .hero__left (44 % mřížky) → /0.44 dává šířku celé stránky, bez použití vw (kvůli zoomu) */
  --hero-inset: max(40px, calc((100% / 0.44 - var(--container)) / 2 + 40px));
}
.hero__left {
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
}
.hero__pager {
  position: absolute;
  left: var(--hero-inset);
  top: 58%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted-text);
  font-weight: 600;
}
.hero__pnum { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; letter-spacing: inherit; padding: 2px; transition: color .3s; }
.hero__pnum.is-active { color: var(--ink); }
.hero__pline { width: 1px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.hero__pline::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--copper); }
.hero.is-auto .hero__pline::after { animation: heroProgress 6s linear infinite; }
@keyframes heroProgress { from { height: 0; } to { height: 100%; } }
.hero__content {
  margin-left: var(--hero-inset);
  padding-left: 80px;   /* místo pro číslování */
  padding-right: 40px;
  max-width: 560px;
}
.hero__title {
  font-weight: 500;
  font-size: clamp(48px, 5.6vw, 74px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--heading);
  margin-bottom: 32px;
}
.hero__rule { display: block; width: 1px; height: 40px; background: var(--copper); margin: 0 0 28px 2px; }
.hero__lead { max-width: 330px; margin-bottom: 40px; font-size: 15px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__right { position: relative; overflow: hidden; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.hero__slide.is-active img { transform: scale(1); }
.hero__caption {
  position: absolute;
  left: 32px; bottom: 28px;
  background: rgba(26,24,19,.72);
  backdrop-filter: blur(6px);
  color: #efe9dd;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: .08em;
  border-left: 2px solid var(--copper);
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s var(--ease) .6s, transform .6s var(--ease) .6s;
}
.hero__slide.is-active .hero__caption { opacity: 1; transform: none; }
.hero__caption strong { display: block; font-weight: 600; letter-spacing: .04em; font-size: 13px; }

/* ============================================================
   PÁS S OBORY (marquee)
   ============================================================ */
.ticker {
  background: var(--ink);
  color: #d8d1c3;
  overflow: hidden;
  padding: 18px 0;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker__track { display: flex; gap: 0; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span { padding: 0 34px; white-space: nowrap; display: inline-flex; align-items: center; gap: 34px; }
.ticker__track span::after { content: ''; width: 5px; height: 5px; background: var(--copper); border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   O NÁS
   ============================================================ */
.about { padding: 110px 0; background: var(--paper); }
.about__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 70px;
  align-items: center;
}
.about__text .section-title { margin-bottom: 28px; }
.about__text p { margin-bottom: 18px; font-size: 15px; }
.about__text p:last-of-type { margin-bottom: 36px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 8px;
}
.stat__num { font-size: 38px; font-weight: 500; color: var(--heading); line-height: 1; letter-spacing: -.02em; }
.stat__num span { color: var(--copper); }
.stat__label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-text); margin-top: 10px; font-weight: 600; }
.about__media { position: relative; }
.about__media img { height: 560px; object-fit: cover; width: 100%; border-radius: var(--radius); }
.about__media .badge {
  position: absolute;
  right: -20px; bottom: 34px;
  background: var(--copper);
  color: #fff;
  padding: 22px 26px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
  max-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

/* ============================================================
   SLUŽBY
   ============================================================ */
.services { background: var(--paper-2); padding: 110px 0; }
.services__inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 70px;
  align-items: start;
}
.services__media { position: sticky; top: 110px; }
.framed { position: relative; padding: 0 0 46px 46px; }
.framed::before {
  content: '';
  position: absolute;
  left: 0; top: 72px; bottom: 0;
  width: 86%;
  border: 1px solid var(--copper);
}
.framed img {
  position: relative;
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.services__text .section-title { margin-bottom: 20px; }
.services__text > p { margin-bottom: 44px; font-size: 15px; max-width: 520px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature { position: relative; padding: 30px 36px 30px 0; border-bottom: 1px solid var(--line); }
.feature:nth-child(2n) { padding-left: 40px; border-left: 1px solid var(--line); }
.feature:nth-last-child(-n+2) { border-bottom: 0; }
.feature__icon { color: var(--copper); font-size: 30px; margin-bottom: 18px; }
.feature h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 10px;
}
.feature p { font-size: 13.5px; line-height: 1.65; }

/* ============================================================
   REALIZACE (tmavá)
   ============================================================ */
.projects { background: var(--dark); padding: 100px 0; }
.projects__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
}
.projects__head .eyebrow { margin-bottom: 18px; }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project {
  display: block;
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease);
  cursor: pointer;
}
.project:hover { transform: translateY(-6px); }
.project__media { height: 280px; overflow: hidden; position: relative; }
.project__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.project:hover .project__media img { transform: scale(1.06); }

.project__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
}
.project__bar h3 { font-size: 14px; font-weight: 600; color: #efe9dd; margin-bottom: 4px; }
.project__bar span:not(.material-icons-outlined) { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.project__bar .material-icons-outlined { color: var(--copper); font-size: 20px; transition: transform .3s var(--ease); }
.project:hover .project__bar .material-icons-outlined { transform: translateX(5px); }
.projects__foot { margin-top: 44px; text-align: center; }

/* ============================================================
   TECHNIKY / MATERIÁLY
   ============================================================ */
.techniques { background: var(--paper); padding: 110px 0; }
.techniques__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tech {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tech:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(28,26,21,.12); }
.tech__media { height: 240px; overflow: hidden; position: relative; }
.tech__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tech:hover .tech__media img { transform: scale(1.05); }
.tech__num {
  position: absolute; left: 18px; top: 18px;
  font-size: 11px; letter-spacing: .2em; font-weight: 700;
  color: #fff; background: rgba(26,24,19,.6); padding: 6px 10px; border-radius: 2px;
}
.tech__body { padding: 26px 26px 30px; }
.tech h3 { font-size: 16px; font-weight: 600; color: var(--heading); margin-bottom: 10px; }
.tech p { font-size: 13.5px; line-height: 1.65; margin-bottom: 16px; }
.tech__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tech__tags span {
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--copper-text); border: 1px solid var(--copper-light); padding: 4px 9px; border-radius: 2px;
}

/* ============================================================
   VIDEO – materiály v pohybu (tmavá)
   ============================================================ */
.videos { background: var(--dark-3); padding: 100px 0; }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vcard {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
}
.vcard video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vcard__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(to top, rgba(22,20,15,.9), transparent);
  color: #efe9dd;
  font-size: 12px; letter-spacing: .08em;
  pointer-events: none;
}
.vcard__label strong { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.vcard__play {
  position: absolute; left: 50%; top: 50%;
  width: 58px; height: 58px; margin: -29px 0 0 -29px;
  border-radius: 50%;
  background: rgba(182,112,65,.9);
  color: #fff;
  display: grid; place-items: center;
  transition: transform .3s var(--ease), opacity .3s;
  pointer-events: none;
}
.vcard__play .material-icons-outlined { font-size: 30px; }
.vcard:hover .vcard__play { transform: scale(1.1); }
.vcard.is-playing .vcard__play { opacity: 0; }

/* ============================================================
   POSTUP SPOLUPRÁCE
   ============================================================ */
.process { background: var(--paper-2); padding: 110px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 30px;
  height: 1px; background: var(--line);
}
.step { position: relative; padding: 0 30px 0 0; }
.step:not(:first-child) { padding-left: 30px; }
.step__num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--copper);
  color: var(--copper);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700; letter-spacing: .1em;
  margin-bottom: 26px;
  position: relative;
  transition: background .3s, color .3s;
}
.step:hover .step__num { background: var(--copper); color: #fff; }
.step h3 { font-size: 15px; font-weight: 600; color: var(--heading); margin-bottom: 10px; }
.step p { font-size: 13.5px; line-height: 1.65; }

/* ============================================================
   REFERENCE
   ============================================================ */
.testimonials { background: var(--paper); padding: 110px 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.quote::before {
  content: '“';
  position: absolute; top: 18px; right: 28px;
  font-size: 90px; line-height: 1; color: var(--copper-light); opacity: .5;
  font-family: Georgia, serif;
}
.quote__stars { color: var(--copper); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.quote p { font-size: 14.5px; line-height: 1.7; font-style: italic; color: var(--text); margin-bottom: 22px; }
.quote__author { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--heading); }
.quote__author span { display: block; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: none; font-size: 12.5px; margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-2); padding: 110px 0; }
.faq__inner { display: grid; grid-template-columns: 38% 62%; gap: 70px; align-items: start; }
.faq__intro p { font-size: 15px; margin: 20px 0 30px; }
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  padding: 22px 0;
  font-size: 15.5px; font-weight: 600; color: var(--heading);
  transition: color .25s;
}
.acc__btn:hover { color: var(--copper); }
.acc__btn .material-icons-outlined { color: var(--copper); transition: transform .35s var(--ease); flex-shrink: 0; }
.acc.is-open .acc__btn .material-icons-outlined { transform: rotate(45deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc__panel p { padding: 0 40px 24px 0; font-size: 14px; line-height: 1.7; }

/* ============================================================
   CTA (tmavá)
   ============================================================ */
.cta { background: var(--dark-3); }
.cta__inner {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 70px;
  align-items: center;
  min-height: 440px;
}
.cta__media { align-self: stretch; height: 100%; }
.cta__media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; filter: brightness(.85); }
.cta__text { padding: 70px 40px 70px 0; }
.cta__text .section-title { margin-bottom: 26px; }
.cta__text p { color: var(--text-light); max-width: 430px; margin-bottom: 36px; font-size: 15px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { background: var(--paper); padding: 110px 0; }
.contact__inner { display: grid; grid-template-columns: 42% 58%; gap: 70px; align-items: start; }
.contact__info .section-title { margin-bottom: 20px; }
.contact__info > p { font-size: 15px; margin-bottom: 36px; }
.contact__list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__item .material-icons-outlined { color: var(--copper); font-size: 22px; margin-top: 2px; }
.contact__item strong { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-text); font-weight: 600; margin-bottom: 4px; }
.contact__item a, .contact__item span.val { font-size: 15px; color: var(--heading); font-weight: 500; }
.contact__item a:hover { color: var(--copper); }
.map { border: 0; width: 100%; height: 260px; filter: grayscale(1) contrast(1.05); border-radius: var(--radius); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--muted-text); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--heading);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(182,112,65,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check label { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 12.5px; color: var(--text); }
.field--check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--copper); }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form__note { font-size: 12px; color: var(--muted-text); }
.form__success {
  display: none;
  background: #f1f7ee;
  border: 1px solid #b9d7ad;
  color: #2f5e24;
  padding: 18px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 20px;
}
.form.is-sent .form__success { display: block; }

/* ============================================================
   PATIČKA (tmavá)
   ============================================================ */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__mark { height: 58px; margin-bottom: 20px; }
.footer__about { font-size: 13.5px; color: var(--text-light); max-width: 320px; }
.footer h3 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #efe9dd; font-weight: 700; margin-bottom: 20px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 13.5px; color: var(--text-light); transition: color .25s; }
.footer__nav a:hover { color: var(--copper); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--text-light); }
.footer__contact a:hover { color: var(--copper); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.social {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid #3a362d;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.social .material-icons-outlined { font-size: 18px; }
.social:hover { border-color: var(--copper); color: var(--copper); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom-inner a:hover { color: var(--copper); }

/* ============================================================
   PODSTRÁNKA GALERIE
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/foto/medena-ornament-mandala.webp') center 40% / cover no-repeat;
  opacity: .22;
}
.page-hero .container { position: relative; }
.page-hero p { color: var(--text-light); max-width: 560px; margin-top: 18px; font-size: 15px; }
.breadcrumb { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); margin-bottom: 26px; font-weight: 600; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb span { margin: 0 10px; color: var(--copper); }

.gallery { padding: 60px 0 110px; background: var(--paper); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; justify-content: center; }
.filter {
  background: none;
  border: 1px solid var(--line);
  color: var(--heading);
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
}
.filter:hover { border-color: var(--copper); color: var(--copper); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #f2ede4; }
.filter small { opacity: .6; margin-left: 5px; font-size: 10px; }
.masonry { columns: 3; column-gap: 20px; }
.gitem {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--paper-3);
  display: block;
}
.gitem img { width: 100%; height: auto; transition: transform .7s var(--ease); }
.gitem:hover img { transform: scale(1.04); }
.gitem__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(26,24,19,.85), transparent);
  color: #efe9dd;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s, transform .35s var(--ease);
}
.gitem__cap span { display: block; font-weight: 500; font-size: 11px; color: #e6b98f; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
.gitem:hover .gitem__cap { opacity: 1; transform: none; }
.gitem.is-hidden { display: none; }
.gallery__empty { text-align: center; color: var(--muted); padding: 40px 0; display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(16,14,10,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 1400px);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  transform: scale(.96);
  transition: transform .35s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 24px;
  text-align: center; color: #efe9dd; font-size: 13px; letter-spacing: .06em;
}
.lightbox__cap span { color: var(--muted); margin-left: 12px; font-size: 12px; }
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.3);
  color: #efe9dd;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s;
}
.lightbox__btn:hover { border-color: var(--copper); color: var(--copper); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
body.no-scroll { overflow: hidden; }

/* ============================================================
   DYNAMIKA
   ============================================================ */
@keyframes heroUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.site-header { animation: fadeIn .8s var(--ease) both; }
.hero__content > * { animation: heroUp .85s var(--ease) both; }
.hero__content > *:nth-child(1) { animation-delay: .15s; }
.hero__content > *:nth-child(2) { animation-delay: .25s; }
.hero__content > *:nth-child(3) { animation-delay: .4s; }
.hero__content > *:nth-child(4) { animation-delay: .5s; }
.hero__content > *:nth-child(5) { animation-delay: .62s; }
.hero__pager { animation: fadeIn 1s var(--ease) .8s both; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal--left { transform: translateX(-36px); }
.reveal--scale { transform: translateY(24px) scale(.96); }
.reveal.is-visible { opacity: 1; transform: none; }

.framed img { transition: transform .8s var(--ease); }
.framed:hover img { transform: scale(1.04); }

.nav__link { position: relative; }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav.is-open .nav__link { animation: heroUp .5s var(--ease) both; }
.nav.is-open .nav__link:nth-child(1) { animation-delay: .05s; }
.nav.is-open .nav__link:nth-child(2) { animation-delay: .1s; }
.nav.is-open .nav__link:nth-child(3) { animation-delay: .15s; }
.nav.is-open .nav__link:nth-child(4) { animation-delay: .2s; }
.nav.is-open .nav__link:nth-child(5) { animation-delay: .25s; }
.nav.is-open .nav__link:nth-child(6) { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .site-header, .hero__content > *, .hero__pager, .nav.is-open .nav__link { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONZIVITA
   ============================================================ */
@media (max-width: 1180px) {
  .nav { gap: 24px; }
  .techniques__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .header__inner { height: 84px; gap: 16px; }
  .brand__mark { height: 56px; }
  .header__cta { margin-left: auto; padding: 10px 18px; }
  .site-header.is-fixed .header__inner { height: 72px; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 340px);
    height: 100vh;
    flex-direction: column;
    gap: 4px;
    background: var(--paper);
    padding: 100px 34px 34px;
    box-shadow: -12px 0 40px rgba(0,0,0,.14);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    margin-left: 0;
    z-index: 90;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }

  .hero { padding-top: 84px; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 44px 0 56px; order: 2; }
  .hero__pager { display: none; }
  .hero__content { padding: 0 40px; margin: 0; max-width: 620px; }
  .hero__right { height: 440px; }

  .about__inner, .services__inner, .faq__inner, .contact__inner, .cta__inner { grid-template-columns: 1fr; gap: 44px; }
  .services__media { position: static; }
  .about__media img { height: 420px; }
  .about__media .badge { right: 12px; }
  .framed img { height: 400px; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .steps::before { display: none; }
  .step, .step:not(:first-child) { padding: 0; }
  .cta__media { min-height: 320px; }
  .cta__media img { min-height: 320px; }
  .cta__text { padding: 0 0 60px; }
  .masonry { columns: 2; }
}

@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .header__inner { height: 76px; gap: 12px; }
  .brand__mark { height: 46px; }
  .header__cta { padding: 9px 14px; font-size: 10px; letter-spacing: .12em; }
  .nav { padding-top: 92px; }

  .hero { padding-top: 76px; }
  .hero__right { height: 320px; }
  .hero__content { padding: 0 22px; }
  .hero__title { font-size: clamp(38px, 12vw, 48px); margin-bottom: 24px; }
  .hero__lead { margin-bottom: 32px; }
  .hero__actions .btn { width: 100%; }
  .hero__caption { left: 16px; bottom: 16px; right: 16px; }

  .section-title { font-size: 26px; }
  .section-head { margin-bottom: 36px; }
  .about, .services, .projects, .techniques, .videos, .process, .testimonials, .faq, .contact { padding: 64px 0; }
  .about__media img { height: 300px; }
  .about__media .badge { position: static; margin-top: 16px; max-width: none; }
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .stat__num { font-size: 28px; }
  .stat__label { font-size: 9.5px; letter-spacing: .1em; }
  .framed { padding: 0 0 30px 26px; }
  .framed::before { top: 46px; }
  .framed img { height: 300px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(2n) { padding: 24px 0; border-left: 0; }
  .feature:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }

  .projects__grid { grid-template-columns: 1fr; }
  .projects__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .project__media { height: 230px; }
  .techniques__grid, .testimonials__grid, .videos__grid { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .cta__media { min-height: 260px; }
  .cta__media img { min-height: 260px; }
  .cta__text .section-title { font-size: 28px; }
  .form { padding: 26px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer { padding-top: 48px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__mark { height: 48px; }
  .footer__bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

  .page-hero { padding: 56px 0 44px; }
  .masonry { columns: 1; }
  .filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; margin-bottom: 26px; }
  .filter { white-space: nowrap; flex-shrink: 0; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__btn { width: 44px; height: 44px; }
}

/* inline SVG ikony (nahrazují webfont Material Icons) */
.mi { width: 1em; height: 1em; display: inline-block; vertical-align: -.15em; flex-shrink: 0; }
.feature__icon.mi { width: 30px; height: 30px; display: block; }
.step__num .mi, .btn .mi, .link-arrow .mi { vertical-align: -.2em; }
.contact__item .mi { width: 22px; height: 22px; margin-top: 2px; }

/* ============================================================
   CMS doplňky
   ============================================================ */
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form__error { display: none; background: #fbeeee; border: 1px solid #e3b4b4; color: #7a2323; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-top: 20px; }
.form__error.is-visible { display: block; }
.form.is-sending button[type=submit] { opacity: .6; pointer-events: none; }
.img-missing { background: var(--paper-3); min-height: 200px; object-fit: cover; }
.hero__slide--empty { background: var(--paper-3); }
.page-hero::before { background-image: var(--page-bg, none); }
.page-hero--plain::before { background: var(--dark-2); opacity: 1; }
.textpage { padding: 70px 0 110px; }
.textpage__inner { max-width: 760px; }
.textpage h2 { font-size: 22px; font-weight: 600; color: var(--heading); margin: 34px 0 12px; }
.textpage p, .textpage ul { margin-bottom: 18px; font-size: 15px; }
.textpage ul { padding-left: 22px; }
.textpage a { color: var(--copper); text-decoration: underline; }
.videos__grid--1, .videos__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.videos__grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
.videos__grid--5, .videos__grid--6 { grid-template-columns: repeat(3, 1fr); }
.videos__grid--7, .videos__grid--8, .videos__grid--9, .videos__grid--10, .videos__grid--11, .videos__grid--12 { grid-template-columns: repeat(4, 1fr); }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.steps--6 { grid-template-columns: repeat(3, 1fr); gap: 40px 0; }
.about__text ul { padding-left: 20px; margin-bottom: 18px; font-size: 15px; }
.cookiebar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 900;
  max-width: 720px; margin: 0 auto;
  background: var(--ink); color: #e8e2d6;
  padding: 18px 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  font-size: 13.5px;
}
.cookiebar a { color: var(--copper); text-decoration: underline; }
.cookiebar div { display: flex; gap: 8px; }
@media (max-width: 1024px) { .steps--3, .steps--5, .steps--6 { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; } }
@media (max-width: 620px) { .steps--3, .steps--5, .steps--6, .videos__grid--3 { grid-template-columns: 1fr; } .videos__grid--3 { grid-template-columns: repeat(2, 1fr); } }

/* WhatsApp */
.wa-icon { vertical-align: -4px; }
.wa-inline { display: flex; align-items: center; gap: 7px; margin: 5px 0 0; font-size: 12.5px; font-weight: 600; color: #4e7a5e; width: fit-content; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.wa-inline .wa-icon { width: 15px; height: 15px; opacity: .85; }
.wa-inline:hover { color: #157a3f; border-color: rgba(21,122,63,.35); }
.wa-badge { color: #25d366; vertical-align: middle; }
.wa-badge .wa-icon { width: 16px; height: 16px; }
.footer__contact small { color: var(--muted); }
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 850;
  display: inline-flex; align-items: center; gap: 0;
  height: 48px; padding: 0 12px;
  background: var(--ink); color: #25d366; border-radius: 100px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  opacity: .82;
  transition: opacity .25s, gap .3s var(--ease), padding .3s var(--ease), box-shadow .25s;
}
.wa-float span { max-width: 0; overflow: hidden; white-space: nowrap; color: #efe9dd; transition: max-width .35s var(--ease); }
.wa-float:hover { opacity: 1; gap: 10px; padding: 0 18px 0 12px; color: #25d366; box-shadow: 0 10px 26px rgba(0,0,0,.24); }
.wa-float:hover span { max-width: 220px; }
.wa-float .wa-icon { width: 24px; height: 24px; flex-shrink: 0; }
.cookiebar { bottom: 90px; }
@media (max-width: 620px) { .wa-float span { display: none; } .wa-float { right: 16px; bottom: 16px; opacity: .9; } .cookiebar { bottom: 80px; } }
.contact__reg { display: block; font-size: 12.5px; color: var(--muted-text); margin-top: 4px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__author strong { font-weight: 600; color: var(--text-light); transition: color .25s; }
.footer__author:hover strong { color: var(--copper); }
.page-hero--section { padding: 26px 0 22px; }
.page-hero--section::before { background: var(--dark-2); opacity: 1; }
.page-hero--section .breadcrumb { margin-bottom: 0; }

/* ---------- detail realizace ---------- */
.detail { padding: 50px 0 90px; }
.detail__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.detail__sub { color: var(--muted-text); font-size: 15px; margin-top: 8px; }
.detail__meta { display: flex; gap: 34px; flex-wrap: wrap; margin: 0; }
.detail__meta dt { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-text); font-weight: 600; }
.detail__meta dd { margin: 4px 0 0; font-size: 14px; color: var(--heading); font-weight: 500; }
.detail__meta a { color: var(--copper-text); }
.detail__main { display: block; border-radius: var(--radius); overflow: hidden; margin-bottom: 44px; cursor: zoom-in; }
.detail__main img { width: 100%; height: auto; max-height: 78vh; object-fit: cover; }
.detail__body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.detail__text p, .detail__text ul { margin-bottom: 18px; font-size: 15px; }
.detail__text ul { padding-left: 20px; }
.detail__text h2 { font-size: 22px; font-weight: 600; color: var(--heading); margin: 26px 0 10px; }
.detail__photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.detail__photos .gitem { margin: 0; }
.detail__photos .gitem img { aspect-ratio: 4/3; object-fit: cover; }
/* před / po */
.ba { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 44px; user-select: none; }
.ba img { width: 100%; height: auto; display: block; max-height: 78vh; object-fit: cover; }
.ba__before { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__before img { width: 100vw; max-width: none; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3; -webkit-appearance: none; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 2; pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,.4); }
.ba__handle::after { content: '⇔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 18px; }
.ba__label { position: absolute; top: 16px; z-index: 2; background: rgba(26,24,19,.7); color: #fff; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px; pointer-events: none; }
.ba__label--before { left: 16px; } .ba__label--after { right: 16px; }
/* technika / lokalita */
.techpage { padding: 50px 0 80px; }
.techpage__inner { display: grid; grid-template-columns: 42% 58%; gap: 70px; align-items: start; }
.techpage__media img { width: 100%; height: auto; border-radius: var(--radius); }
.techpage__lead { font-size: 17px; color: var(--heading); margin: 18px 0 22px; }
.techpage__text p, .techpage__text ul { margin-bottom: 18px; font-size: 15px; }
.techpage__text ul { padding-left: 20px; }
.techpage__text h2 { font-size: 22px; font-weight: 600; color: var(--heading); margin: 26px 0 10px; }
.techpage__text .btn { margin-top: 10px; }
.tech__tags.mb { margin-bottom: 8px; }
.tech__arrow { font-size: 16px; color: var(--copper-text); vertical-align: -3px; }
a.tech { display: block; color: inherit; }
.techniques--compact { padding: 80px 0; background: var(--paper-2); }
.locations { padding: 40px 0 70px; }
.locations__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer h3.mt { margin-top: 26px; }
@media (max-width: 1024px) { .detail__body, .techpage__inner { grid-template-columns: 1fr; gap: 36px; } .techpage__media { order: -1; } }
@media (max-width: 620px) { .detail { padding: 30px 0 60px; } .detail__photos { grid-template-columns: 1fr 1fr; gap: 8px; } .detail__meta { gap: 18px; } }

/* mapa na kliknutí */
.map--lazy { background: var(--paper-3); display: grid; place-items: center; }
.map__ph { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px; font-size: 13.5px; color: var(--text); }
.map__ph .mi { width: 34px; height: 34px; color: var(--copper-text); }
.map__ext { font-size: 12px; color: var(--copper-text); text-decoration: underline; }
.map.is-loaded iframe { width: 100%; height: 100%; border: 0; display: block; }
.field--file input { font-size: 13px; padding: 10px; }
.field--file label small { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted-text); }
.field__hint { font-size: 12px; color: var(--muted-text); }
/* instagram */
.insta { padding: 90px 0; background: var(--paper-2); }
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.insta__item { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); position: relative; background: var(--paper-3); }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta__item:hover img { transform: scale(1.05); }
.insta__item--video::after { content: ''; position: absolute; right: 10px; top: 10px; width: 0; height: 0; border-left: 12px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); }
.insta__foot { margin-top: 26px; text-align: center; }
@media (max-width: 620px) { .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.footer__areas { border-top: 1px solid var(--line-dark); padding: 14px 0; font-size: 12px; color: var(--muted); }
.footer__areas .container { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; }
.footer__areas-label { color: var(--text-light); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 10.5px; }
.footer__areas a { color: var(--text-light); }
.footer__areas a:hover { color: var(--copper); }
.footer__areas-all { color: var(--copper-light) !important; }

/* recenze */
.reviews { padding: 110px 0; background: var(--paper); }
.reviews__rating { font-size: 15px; color: var(--heading); margin: 8px 0 14px; }
.reviews__stars { color: var(--copper); letter-spacing: 2px; font-size: 18px; }
/* poradna */
.blog { padding: 90px 0 110px; background: var(--paper-2); }
.blog--related { background: var(--paper); padding: 70px 0 90px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.post:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(28,26,21,.1); }
.post__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-text); font-weight: 600; }
.post__meta a { color: var(--copper-text); }
.post h2, .post h3 { font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--heading); }
.post h2 a:hover, .post h3 a:hover { color: var(--copper-text); }
.post p { font-size: 14px; }
.post .link-arrow { margin-top: auto; }
.article { padding: 50px 0 80px; }
.article__inner { max-width: 860px; }
.article__head { margin-bottom: 30px; }
.article__perex { font-size: 18px; color: var(--heading); margin-top: 18px; line-height: 1.6; }
.article__media { margin: 0 0 36px; border-radius: var(--radius); overflow: hidden; }
.article__media img { width: 100%; height: auto; }
.article__body p, .article__body ul { font-size: 16px; margin-bottom: 20px; line-height: 1.75; }
.article__body ul { padding-left: 22px; }
.article__body h2 { font-size: 24px; font-weight: 600; color: var(--heading); margin: 36px 0 12px; }
.article__body a { color: var(--copper-text); text-decoration: underline; }
.article__faq { margin-top: 44px; }
.article__faq h2 { font-size: 22px; font-weight: 600; color: var(--heading); margin-bottom: 14px; }
.article__cta { margin-top: 44px; background: var(--ink); color: #efe9dd; padding: 28px 30px; border-radius: var(--radius); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.article__cta > div { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 220px; }
.article__cta strong { font-size: 17px; }
.article__cta span { color: var(--text-light); font-size: 14px; }
.article__author { margin-top: 26px; font-size: 12.5px; color: var(--muted-text); }
@media (max-width: 1024px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog__grid { grid-template-columns: 1fr; } .blog, .reviews { padding: 64px 0; } .article__cta { padding: 22px; } }

/* ---------- 404 „Před / po" ---------- */
.nf { padding: 0 0 90px; }
.nf__ba { position: relative; height: clamp(560px, 78vh, 900px); overflow: hidden; background: #d9d2c5; cursor: ew-resize; --pos: 58%; user-select: none; }
.nf__before { position: absolute; inset: 0; background-color: #d9d2c5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .45 0 0 0 0 .38 0 0 0 .5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 320px; }
.nf__before::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.35), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18)); }
.nf__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.nf__after img, .nf__after picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.nf__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 1px; background: rgba(244,241,236,.9); box-shadow: 0 0 0 1px rgba(0,0,0,.15); pointer-events: none; z-index: 3; }
.nf__handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: var(--cream); color: var(--ink); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.nf__handle span .mi { width: 22px; height: 22px; }
.nf__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 4; -webkit-appearance: none; appearance: none; }
.nf__range:focus-visible { opacity: 1; outline: 3px solid var(--copper); outline-offset: -3px; background: transparent; }
.nf__label { position: absolute; bottom: 30px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; z-index: 2; }
.nf__label--l { left: 34px; color: var(--ink); }
.nf__label--r { right: 34px; color: var(--cream); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.nf__panel { position: absolute; left: 34px; top: 50%; transform: translateY(-50%); max-width: 460px; padding: 34px 36px; background: rgba(244,241,236,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 5; }
.nf__num { font-size: clamp(90px, 12vw, 150px); font-weight: 800; letter-spacing: -.06em; line-height: .8; color: var(--ink); margin-bottom: 8px; }
.nf__panel h1 { margin: 10px 0 12px; font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; color: var(--heading); }
.nf__panel p { font-size: 14px; line-height: 1.65; color: var(--muted-text); margin: 0 0 22px; }
.nf__links { display: flex; gap: 26px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.nf__links a { text-decoration: none; color: var(--ink); position: relative; padding-bottom: 4px; }
.nf__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; transform: scaleX(.35); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.nf__links a:hover::after { transform: scaleX(1); }
.nf__picks { margin-top: 70px; }
.nf__picks .eyebrow { margin-bottom: 18px; display: block; }
.project--light { background: #fff; border: 1px solid var(--line); }
.project--light .project__bar h3 { color: var(--heading); }
@media (max-width: 860px) {
  .nf__ba { height: auto; min-height: 0; display: flex; flex-direction: column; cursor: default; --mh: max(380px, 62vh); }
  .nf__ba::after { content: ""; display: block; height: var(--mh); }
  .nf__panel { position: static; transform: none; max-width: none; padding: 36px 24px 28px; order: -1; background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nf__before, .nf__after, .nf__handle, .nf__range { top: auto; height: var(--mh); bottom: 0; }
  .nf__label { bottom: 18px; font-size: 10px; }
  .nf__label--l { left: 18px; } .nf__label--r { right: 18px; }
  .nf__num { font-size: 96px; }
}
@media (prefers-reduced-motion: reduce) { .nf__ba { --pos: 55%; } }

/* ---------- workshop ---------- */
.workshop { padding: 110px 0; background: #23201a; color: #f4f1ec; }
.workshop .eyebrow { color: #d9a074; }
.workshop .section-title { color: #f4f1ec; }
.workshop__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: start; margin-top: 20px; }
.workshop__text { font-size: 15px; line-height: 1.75; color: rgba(244,241,236,.78); max-width: 62ch; }
.workshop__text .accent, .workshop__text em { color: #d9a074; font-style: normal; }
.workshop__media { margin: 28px 0 0; }
.workshop__media img { width: 100%; height: auto; display: block; border-radius: 4px; }
.workshop__learn { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid rgba(244,241,236,.14); }
.wlearn { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(244,241,236,.14); }
.wlearn__num { font-size: 13px; font-weight: 700; color: #b67041; letter-spacing: .08em; padding-top: 4px; }
.wlearn h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: #f4f1ec; letter-spacing: -.01em; }
.wlearn p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(244,241,236,.66); }
.workshop__card { background: #f4f1ec; color: #1c1a15; padding: 34px 32px; border-top: 3px solid #b67041; position: sticky; top: 110px; }
.wcard__price { font-size: 40px; font-weight: 800; letter-spacing: -.03em; color: #1c1a15; }
.wcard__price span { font-size: 13px; font-weight: 500; letter-spacing: 0; color: #6f6a5e; }
.wcard__facts { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(28,26,21,.12); display: grid; gap: 12px; }
.wcard__facts li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.wcard__facts .mi { width: 19px; height: 19px; color: #9a5a34; flex: none; margin-top: 1px; }
.wcard__inc { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(28,26,21,.12); display: grid; gap: 10px; }
.wcard__inc li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: #55503f; }
.wcard__inc .mi { width: 18px; height: 18px; color: #9a5a34; flex: none; margin-top: 1px; }
.wcard__btn { width: 100%; justify-content: center; margin-top: 24px; }
.wcard__note { margin: 14px 0 0; font-size: 12.5px; line-height: 1.6; color: #6f6a5e; }
@media (max-width: 1024px) { .workshop { padding: 80px 0; } .workshop__grid { grid-template-columns: 1fr; gap: 40px; } .workshop__card { position: static; } }
@media (max-width: 620px) { .workshop { padding: 64px 0; } .wcard__price { font-size: 34px; } .workshop__card { padding: 28px 22px; } }

/* ---------- číslování fotek v galerii ---------- */
.gitem { position: relative; }
.gitem__num { position: absolute; top: 10px; left: 10px; z-index: 2; min-width: 30px; text-align: center; background: rgba(28,26,21,.72); color: #f4f1ec; font-size: 11px; font-weight: 700; letter-spacing: .05em; padding: 4px 8px; border-radius: 999px; pointer-events: none; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.gitem__num::before { content: "č. "; opacity: .65; font-weight: 500; }

/* ---------- video: celá obrazovka ---------- */
.vcard__fs { position: absolute; top: 10px; right: 10px; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(28,26,21,.55); color: #f4f1ec; cursor: pointer; opacity: 0; transition: opacity .25s, background .25s, transform .25s; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); padding: 0; }
.vcard:hover .vcard__fs, .vcard.is-playing .vcard__fs, .vcard__fs:focus-visible { opacity: 1; }
.vcard__fs:hover { background: rgba(182,112,65,.9); transform: scale(1.08); }
@media (hover: none) { .vcard__fs { opacity: 1; } }
video:fullscreen { object-fit: contain; background: #000; }
video:-webkit-full-screen { object-fit: contain; background: #000; }

.vcard__num { position: absolute; top: 10px; left: 10px; z-index: 3; min-width: 30px; text-align: center; background: rgba(28,26,21,.72); color: #f4f1ec; font-size: 11px; font-weight: 700; letter-spacing: .05em; padding: 4px 8px; border-radius: 999px; pointer-events: none; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.vcard__num::before { content: "č. "; opacity: .65; font-weight: 500; }

.form__gdpr { font-size: 12px; line-height: 1.6; color: var(--muted-text); margin: 4px 0 0; }
.form__gdpr a { color: var(--copper-text); }
