/* ───── TOKENS (Grafty index-5 style) ───── */
:root {
  --black: #000;
  --white: #fff;
  --grey:  #F2F2F2;
  --dark:  #101010;
  --red:   #D60004;
  --red-h: #b50003;
  --rule:  rgba(0,0,0,.15);
  --rule-w:rgba(255,255,255,.15);

  --heading: "Bebas Neue", "Impact", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;

  --ease: cubic-bezier(.25,1,.35,1);
}

/* ───── RESET ───── */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}
body{
  margin:0;
  font-family:var(--body);
  font-size:18px;
  line-height:1.7;
  color:var(--black);
  background:var(--white);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
h1,h2,h3,h4,h5,h6{line-height:1.05}
ul,ol{list-style:none;margin:0;padding:0}
.page-wrapper{position:relative}

/* ───── LAYOUT ───── */
.container{
  width:min(1140px,100% - 60px);
  margin-inline:auto;
}
.container-full{
  width:min(1440px,100% - 60px);
  margin-inline:auto;
}

/* ───── LINE HOVER ───── */
.line-hover{
  display:inline;
  background-image:linear-gradient(var(--black),var(--black));
  background-position:0 100%;
  background-size:0 2px;
  background-repeat:no-repeat;
  transition:background-size .3s var(--ease);
}
.line-hover:hover{background-size:100% 2px}

/* ───── HEADER ───── */
.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:100;
  padding:30px 0;
}
.header-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.75rem 1.5rem;
}
.header-brand{
  display:flex;
  flex-direction:column;
  gap:0;
}
.logo{
  font-family:var(--heading);
  font-size:1.5rem;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--white);
  white-space:nowrap;
  font-variant:small-caps;
}
.logo-role{
  font-family:var(--body);
  font-size:.75rem;
  letter-spacing:.04em;
  color:rgba(255,255,255,.5);
  text-transform:uppercase;
}
.logo-footer{color:var(--black)}
.logo-role-footer{color:rgba(0,0,0,.45)}

.main-nav{
  display:none;
  gap:.5rem;
  color:var(--white);
  font-size:.9rem;
  text-transform:uppercase;
  margin:0 auto;
}
.main-nav a{transition:color .2s}
.main-nav a:hover{color:var(--red)}
.main-nav .sep{opacity:.35}
@media(min-width:900px){.main-nav{display:flex}}

.btn-cta{
  font-family:var(--heading);
  font-size:1.15rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--white);
  background:var(--black);
  border-radius:999px;
  padding:14px 36px 11px;
  border:none;
  cursor:pointer;
  transition:background .25s var(--ease);
  white-space:nowrap;
  display:inline-block;
}
.btn-cta:hover{background:var(--red)}
.header-inner .btn-cta{margin-left:0;background:var(--white);color:var(--black)}
.header-inner .btn-cta:hover{background:var(--red);color:var(--white)}

.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-end;
  gap:5px;
  width:36px;
  height:36px;
  padding:0;
  border:none;
  background:transparent;
  cursor:pointer;
  align-self:flex-start;
}
.menu-toggle span{
  display:block;
  height:1.5px;
  background:var(--white);
  transition:width .3s var(--ease), transform .25s var(--ease), opacity .25s;
}
.menu-toggle span:nth-child(1){width:28px}
.menu-toggle span:nth-child(2){width:20px}
.menu-toggle span:nth-child(3){width:28px}
.menu-toggle:hover span:nth-child(2){width:28px}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;width:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
@media(min-width:900px){.menu-toggle{display:none!important}}
@media(max-width:899px){
  .header-inner .btn-cta{display:none}
  .menu-toggle{margin-left:auto}
}

.mobile-nav{
  display:flex;flex-direction:column;gap:.75rem;
  padding:1.5rem 30px 2rem;
  background:rgba(0,0,0,.9);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.mobile-nav a{color:var(--white);font-size:1.05rem;text-transform:uppercase;font-weight:500}
.mobile-nav .btn-cta{text-align:center;margin-top:.5rem;background:var(--black);border:none;color:var(--white)}
.mobile-nav .btn-cta:hover{background:var(--white);color:var(--black)}
.mobile-nav[hidden]{display:none}
@media(min-width:900px){.mobile-nav{display:none!important}}

/* ───── HERO ───── */
.hero{
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding:0 0 clamp(60px,10vw,140px);
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;z-index:-2;
  background-image:url('/public/petra-pokorna.jpg');
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.hero-bg::after{
  content:'';
  position:absolute;inset:0;
  background:rgba(0,0,0,.2);
}
.hero-content{position:relative;z-index:4}
.hero-heading{
  font-family:var(--heading);
  font-size:clamp(4.5rem,12vw,13rem);
  font-weight:400;
  text-shadow:1px 0 0 currentColor, -1px 0 0 currentColor;
  line-height:.9;
  letter-spacing:.01em;
  text-transform:uppercase;
  color:var(--white);
  margin:0;
}
.hero-accent{color:var(--white)}

.rotating-text{
  display:inline-block;
  vertical-align:bottom;
  white-space:nowrap;
}
.rotate-word{
  display:inline-block;
  font-family:var(--serif);
  font-style:italic;
  color:var(--white);
  border-right:2px solid var(--white);
  animation:blink .6s step-end infinite;
}
@keyframes blink{
  0%,100%{border-color:var(--white)}
  50%{border-color:transparent}
}
.hero-sub{
  font-family:var(--body);
  font-size:clamp(1.8rem,4vw,3rem);
  color:rgba(0,0,0,.55);
  margin:clamp(16px,2vw,28px) 0 0;
  font-weight:400;
  letter-spacing:.02em;
}

.hero-blob{
  width:min(520px,60vw);
  aspect-ratio:1;
  background:var(--red);
  border-radius:50%;
  position:absolute;
  left:-10%;bottom:-15%;
  z-index:3;
  animation:plasma 6s infinite linear;
  pointer-events:none;
}

@keyframes plasma{
  0%,100%{border-radius:50%;transform:scale(1)}
  25%{border-radius:60% 40% 55% 45%;transform:scale(1.05) translate(5px,-5px)}
  50%{border-radius:45% 55% 60% 40%;transform:scale(.95) translate(-5px,5px)}
  75%{border-radius:55% 45% 40% 60%;transform:scale(1.02) translate(3px,-3px)}
}

/* ───── SHARED TITLE ───── */
.title-block{margin-bottom:clamp(40px,6vw,90px)}
.title-block .svc-detail-lead{margin-top:clamp(12px,2vw,24px);max-width:none;color:var(--black)}
.upper-title{
  display:inline-block;
  font-family:var(--heading);
  font-size:1rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  background:var(--grey);
  border-radius:999px;
  padding:8px 22px 5px;
  margin-bottom:clamp(20px,3vw,40px);
}
.upper-title-light{
  background:rgba(0,0,0,.2);
  color:var(--white);
}
.title-block h2{
  font-family:var(--heading);
  font-size:clamp(2.25rem,5vw,5.5rem);
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0;
}
.title-center{text-align:center;max-width:1200px;margin-inline:auto;margin-bottom:clamp(40px,6vw,90px)}
.title-split{
  display:grid;
  gap:1rem;
}
@media(min-width:768px){
  .title-split{grid-template-columns:auto 1fr;align-items:end;gap:2rem}
  .title-split .title-right h2{text-align:right}
}

/* ───── ABOUT ───── */
.section-about{
  padding:clamp(100px,14vw,200px) 0 clamp(60px,10vw,100px);
}
.about-claim{
  font-family:var(--body);
  font-weight:400;
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  margin:0 0 clamp(8px,1vw,12px);
  line-height:1.6;
  color:rgba(0,0,0,.7);
}
.about-note-text{
  margin:0;
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  line-height:1.6;
  color:rgba(0,0,0,.7);
  font-weight:400;
}
.about-lead{
  font-family:var(--body);
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  text-transform:none;
  text-align:center;
  max-width:none;
  margin:clamp(40px,5vw,72px) auto clamp(24px,3vw,40px);
  line-height:1.6;
  color:var(--black);
}
.about-cta{
  text-align:center;
  margin-bottom:clamp(50px,6vw,80px);
}

.benefits-list{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(20px,3vw,32px);
  margin-bottom:clamp(50px,7vw,80px);
}
@media(min-width:768px){.benefits-list{grid-template-columns:1fr 1fr}}
.benefit-intro{
  text-align:left;
  margin-bottom:clamp(24px,3vw,40px);
}
.benefit-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding:clamp(20px,3vw,32px);
  border-radius:14px;
  background:var(--grey);
}
.benefit-num{
  font-family:var(--heading);
  font-size:clamp(2rem,3vw,3rem);
  line-height:1;
  color:var(--red);
}
.benefit-item h5{
  font-family:var(--heading);
  font-size:clamp(1.1rem,1.5vw,1.4rem);
  text-transform:uppercase;
  margin:0;
  line-height:1.2;
}
.benefit-item p{
  margin:0;
  font-size:clamp(.9rem,1.2vw,1.05rem);
  line-height:1.5;
  color:rgba(0,0,0,.6);
}

/* Counters */
.counters{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2rem;
  border-top:2px solid var(--black);
  border-bottom:2px solid var(--black);
  padding:clamp(30px,4vw,60px) 0;
}
.counter-item{text-align:center}
.counter-item .count{
  font-family:var(--heading);
  font-size:clamp(4rem,8vw,8.5rem);
  line-height:1;
  margin-bottom:-8px;
}
.counter-item p{
  font-size:clamp(1rem,1.5vw,1.5rem);
  font-weight:500;
  margin:0;
}

/* ───── SERVICES ───── */
.section-services{
  position:relative;
  z-index:1;
  padding:clamp(100px,14vw,250px) 0;
}
/* --- Service grid (4-col cards, template style) --- */
.service-grid{
  display:flex;
  flex-wrap:wrap;
  border:1px solid var(--rule);
}
.service-card{
  width:25%;
  display:flex;
  flex-direction:column;
  padding:22px 30px 20px;
  border-right:1px solid var(--rule);
  color:var(--black);
  transition:background .4s var(--ease), color .4s var(--ease);
}
.service-card:last-child{border-right:none}
.service-card:hover{
  background:var(--black);
  color:var(--white);
}
.svc-num{
  font-family:var(--heading);
  font-size:clamp(1.2rem,1.8vw,1.75rem);
  transition:color .4s;
}
.service-card:hover .svc-num{color:var(--white)}
.svc-icon-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:clamp(100px,14vw,200px);
  margin:clamp(60px,10vw,150px) auto clamp(80px,16vw,250px);
  color:var(--black);
  transition:color .4s;
}
.svc-icon-card img{
  max-height:100%;
  max-width:clamp(80px,12vw,160px);
  object-fit:contain;
  filter:brightness(0);
  transition:filter .4s;
}
.svc-icon-card svg{
  width:clamp(80px,12vw,160px);
  height:clamp(80px,12vw,160px);
}
.service-card:hover .svc-icon-card{color:var(--white)}
.service-card:hover .svc-icon-card img{filter:brightness(0) invert(1)}

.svc-bottom{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  margin-top:auto;
  width:100%;
}

.svc-name{
  font-family:var(--heading);
  font-size:clamp(1.1rem,1.8vw,1.75rem);
  text-transform:uppercase;
  letter-spacing:.02em;
}

.svc-arrow{
  display:none;
  align-items:center;
  flex-shrink:0;
  width:clamp(48px,5vw,72px);
  margin-left:auto;
  margin-bottom:15px;
}
.svc-arrow svg{width:100%;height:auto}
.service-card:hover .svc-arrow{display:flex}
.service-card:hover .svc-bottom{justify-content:space-between}

@media(max-width:991px){
  .service-card{width:50%}
  .service-card:nth-child(2){border-right:none}
  .service-card:nth-child(1),
  .service-card:nth-child(2){border-bottom:1px solid var(--rule)}
  .svc-icon-card{margin:clamp(40px,6vw,70px) auto clamp(50px,8vw,100px)}
}
@media(max-width:575px){
  .service-card{width:100%;border-right:none;border-bottom:1px solid var(--rule)}
  .service-card:last-child{border-bottom:none}
  .service-card:nth-child(2){border-right:none}
  .svc-icon-card{margin:40px auto 60px;min-height:80px}
}

.blob{
  position:absolute;z-index:-1;
  border-radius:50%;
  background:var(--red);
  animation:plasma 6s infinite linear;
}
.blob-svc{
  width:270px;height:270px;
  right:-40px;top:-50px;
}

/* ───── CTA BANNER ───── */
.section-cta{
  position:relative;
  z-index:1;
  text-align:center;
  padding:clamp(80px,12vw,200px) 0;
}
.section-cta .container{
  width:min(1400px,100% - 60px);
}
.cta-heading{
  font-family:var(--heading);
  font-size:clamp(2.5rem,5vw,6rem);
  text-transform:uppercase;
  line-height:.95;
  margin:0 0 clamp(30px,4vw,50px);
}
.blob-cta{
  width:465px;height:465px;
  left:-6%;top:-22%;
}

/* ───── WHY ME ───── */
.section-why{
  position:relative;
  z-index:1;
  padding:clamp(100px,14vw,250px) 0;
}
.why-list{
  border-top:1px solid var(--rule);
}
.why-item{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1.5rem;
  padding:clamp(24px,3vw,40px) 0;
  border-bottom:1px solid var(--rule);
  transition:background .3s var(--ease);
}
.why-item:hover{
  background:var(--grey);
  padding-left:1rem;
  padding-right:1rem;
}
.why-num{
  font-family:var(--heading);
  font-size:clamp(2rem,3vw,3rem);
  min-width:60px;
  color:var(--red);
}
.why-body{flex:1;min-width:250px}
.why-body h4{
  font-family:var(--heading);
  font-size:clamp(1.25rem,2vw,1.65rem);
  text-transform:uppercase;
  letter-spacing:.02em;
  margin:0 0 .25rem;
}
.why-body p{
  margin:0;
  color:rgba(0,0,0,.55);
  font-size:1rem;
}
.why-arrow{
  width:50px;height:50px;
  border:1px solid var(--rule);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-left:auto;
  background:none;
  cursor:pointer;
  color:var(--black);
  flex-shrink:0;
  transition:background .3s,color .3s,border-color .3s;
}
.why-item:hover .why-arrow{
  background:var(--black);
  color:var(--white);
  border-color:var(--black);
}

.modal-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.7);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s,visibility .3s;
}
.modal-overlay.active{
  opacity:1;
  visibility:visible;
}
.modal-content{
  background:var(--white);
  border-radius:16px;
  max-width:600px;
  width:100%;
  overflow:hidden;
  position:relative;
  transform:translateY(20px);
  transition:transform .3s var(--ease);
}
.modal-overlay.active .modal-content{
  transform:translateY(0);
}
.modal-content img{
  width:100%;
  display:block;
}
.modal-text{
  padding:clamp(20px,3vw,32px);
}
.modal-text h4{
  font-family:var(--heading);
  font-size:1.3rem;
  text-transform:uppercase;
  margin:0 0 8px;
}
.modal-text p{
  margin:0;
  font-size:.95rem;
  line-height:1.6;
  color:rgba(0,0,0,.6);
}
.modal-close{
  position:absolute;
  top:12px;right:12px;
  width:40px;height:40px;
  border:none;
  background:var(--white);
  border-radius:50%;
  font-size:1.5rem;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  transition:background .2s;
  z-index:1;
}
.modal-close:hover{
  background:var(--grey);
}

.blob-why{
  width:270px;height:270px;
  right:-3%;top:4%;
  left:auto;
}

/* ───── FEEDBACK ───── */
.section-feedback{
  position:relative;z-index:1;
  background:var(--dark);
  color:var(--white);
  padding:clamp(100px,14vw,200px) 0;
}
.section-feedback .title-block{margin-bottom:clamp(40px,5vw,90px)}
.text-white h2{color:var(--white)}

.feedback-cards{
  display:grid;
  gap:clamp(16px,2vw,35px);
}
.feedback-card{
  border-radius:20px;
  padding:clamp(28px,3vw,40px);
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.fb-1{background:#FFFFFF;color:var(--black)}
.fb-2{background:#FFFFFF;color:var(--black)}
.fb-3{background:#FFF7F4;color:var(--black)}

.fb-text{
  position:relative;
  max-height:4.2em;
  overflow:hidden;
  transition:max-height .5s var(--ease);
  padding-right:50px;
}
.fb-text::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:2em;
  background:linear-gradient(transparent,var(--white));
  pointer-events:none;
  transition:opacity .3s;
}
.fb-1 .fb-text::after{background:linear-gradient(transparent,#FFFFFF)}
.fb-2 .fb-text::after{background:linear-gradient(transparent,#FFFFFF)}
.fb-3 .fb-text::after{background:linear-gradient(transparent,#FFF7F4)}
.feedback-card{cursor:pointer;position:relative}
.feedback-card.expanded .fb-text{
  max-height:600px;
}
.feedback-card.expanded .fb-text::after{
  opacity:0;
}
.fb-icon{
  position:absolute;
  top:clamp(20px,2.5vw,32px);
  right:clamp(20px,2.5vw,32px);
  width:36px;height:36px;
  border:1px solid rgba(0,0,0,.2);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;
  font-weight:300;
  color:rgba(0,0,0,.5);
  transition:transform .3s var(--ease),color .3s,border-color .3s;
}
.feedback-card:hover .fb-icon{
  color:var(--black);
  border-color:var(--black);
}
.feedback-card.expanded .fb-icon{
  transform:rotate(45deg);
}
.feedback-card blockquote{
  margin:0;
  font-size:clamp(1.1rem,2vw,1.65rem);
  font-weight:500;
  line-height:1.4;
}
.feedback-card blockquote strong{
  font-weight:600;
}
.fb-detail{
  display:block;
  margin-top:.75em;
  font-weight:400;
  font-size:.9em;
  opacity:.65;
}
.fb-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-top:auto;
}
.fb-author h5{margin:0;font-size:1.1rem;font-weight:600}
.fb-author span{font-size:.9rem;color:rgba(0,0,0,.45)}
.fb-logo{
  flex-shrink:0;
}
.fb-logo img{
  height:70px;
  width:auto;
  object-fit:contain;
  mix-blend-mode:multiply;
  opacity:.7;
  transition:opacity .3s;
}
.feedback-card:hover .fb-logo img{
  opacity:1;
}
.fb-stars{
  font-size:1.1rem;
  letter-spacing:3px;
  color:var(--black);
}

.avg-rating{
  text-align:center;
  margin-top:clamp(40px,5vw,80px);
}
.avg-number{
  font-family:var(--heading);
  font-size:clamp(4rem,8vw,6rem);
  line-height:1;
}
.avg-label{
  font-family:var(--heading);
  font-size:1.5rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  opacity:.6;
}

.client-logos-label{
  font-family:var(--heading);
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.45);
  margin-top:clamp(48px,6vw,100px);
  margin-bottom:clamp(16px,2vw,24px);
}
.hero-logos{
  padding:clamp(30px,4vw,50px) 0;
}
.hero-logos .client-logo-img{
  filter:brightness(0);
  opacity:.4;
  height:20px;
}
.hero-logos .client-logo-img:hover{opacity:.8}
.client-logo-citroen{
  height:40px!important;
}
.client-logo-lh{
  height:36px!important;
}
.client-logo-hl{
  height:70px!important;
}
.client-logo-nd{
  height:40px!important;
}
.hero-logos .client-logo-apotheke{
  height:36px;
  filter:grayscale(100%) brightness(0.3);
  opacity:.7;
}
.marquee{
  overflow:hidden;
  mask-image:linear-gradient(to right,transparent,black 10%,black 90%,transparent);
  -webkit-mask-image:linear-gradient(to right,transparent,black 10%,black 90%,transparent);
}
.marquee-track{
  display:flex;
  align-items:center;
  gap:clamp(40px,6vw,80px);
  width:max-content;
  animation:marquee 25s linear infinite;
}
.client-logo-img{
  height:28px;
  width:auto;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.55;
  transition:opacity .3s;
  flex-shrink:0;
}
.client-logo-img:hover{opacity:1}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-25%)}
}
@media(prefers-reduced-motion:reduce){
  .marquee-track{animation:none}
}

.blob-fb{
  width:328px;height:328px;
  left:-2%;top:4%;
}

/* ───── FINAL CTA ───── */
.section-final-cta{
  position:relative;z-index:1;
  text-align:center;
  padding:clamp(100px,16vw,300px) 0;
}
.final-heading{
  font-family:var(--heading);
  font-size:clamp(2.5rem,7vw,8.5rem);
  text-transform:uppercase;
  line-height:.93;
  margin:0 0 clamp(30px,4vw,50px);
}
.heading-serif{
  font-family:var(--serif);
  font-style:italic;
  text-transform:none;
}
.blob-final{
  width:465px;height:465px;
  left:-6%;top:-22%;
}

/* ───── FOOTER ───── */
.site-footer{
  padding:clamp(50px,6vw,70px) 0 clamp(30px,4vw,50px);
}
.footer-top{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:2rem;
  margin-bottom:clamp(30px,4vw,50px);
}
.footer-form-col{flex:1;min-width:280px}

.newsletter-form{
  position:relative;
  height:60px;
  max-width:600px;
  margin-left:auto;
}
.newsletter-form input{
  width:100%;height:100%;
  background:var(--grey);
  border-radius:999px;
  padding:0 60px 0 30px;
  font-family:var(--body);
  font-size:1rem;
  font-style:italic;
  border:none;
  outline:none;
}
.newsletter-form input::placeholder{color:rgba(0,0,0,.3)}
.newsletter-form input:focus{box-shadow:0 0 0 2px var(--red)}
.newsletter-form button{
  position:absolute;right:8px;top:8px;
  width:44px;height:44px;
  border-radius:50%;
  background:var(--black);
  color:var(--white);
  border:none;
  cursor:pointer;
  font-size:1.2rem;
  transition:background .25s;
}
.newsletter-form button:hover{background:var(--red)}

.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  align-items:flex-start;
  justify-content:space-between;
}
.footer-col{min-width:160px}
.footer-linkedin{
  display:inline-flex;
  align-items:center;
  color:var(--black);
  margin-bottom:12px;
  transition:color .3s;
}
.footer-linkedin:hover{color:var(--red)}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem 1.5rem;
}
.footer-nav li a{
  font-weight:500;
  font-size:1rem;
  transition:text-decoration .2s;
}
.footer-nav li a:hover{text-decoration:underline}

.footer-contact{margin-left:auto}
.footer-email{
  font-size:1.15rem;
  font-weight:500;
  display:inline-block;
  border-bottom:1px solid var(--black);
  padding-bottom:2px;
  transition:color .2s;
}
.footer-email:hover{color:var(--red);border-color:var(--red)}
.footer-address{
  margin:.75rem 0 0;
  font-size:.95rem;
  color:rgba(0,0,0,.5);
}
.copyright{
  font-size:.85rem;
  color:rgba(0,0,0,.4);
  margin:0;
  margin-left:auto;
  text-align:right;
}

/* ───── SCROLL TOP ───── */
.scroll-top{
  position:fixed;bottom:20px;right:12px;
  width:40px;height:40px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  border:none;
  font-size:1.4rem;
  line-height:1;
  cursor:pointer;
  z-index:200;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s,background .25s;
}
.scroll-top.visible{opacity:1;pointer-events:auto}
.scroll-top:hover{background:var(--black)}

/* ───── CONTACT PAGE ───── */
.site-header-dark{background:transparent;position:relative;z-index:2}
.logo-dark{color:var(--black)}
.logo-role-dark{color:rgba(0,0,0,.45)}
.main-nav-dark{color:var(--black)}
.main-nav-dark a:hover,.main-nav-dark a.active{color:var(--red)}
.main-nav-dark .sep{opacity:.25}
.menu-toggle-dark span{background:var(--black)}
.menu-toggle-dark:hover span{background:var(--red)}
.mobile-nav-dark{background:var(--white);border-bottom:1px solid var(--rule)}
.mobile-nav-dark a{color:var(--black)}

.contact-section{
  position:relative;
  z-index:1;
  padding:clamp(140px,18vw,240px) 0 clamp(80px,12vw,160px);
  overflow:visible;
}
.contact-grid{
  display:grid;
  gap:clamp(40px,6vw,80px);
}
@media(min-width:900px){
  .contact-grid{grid-template-columns:5fr 7fr;align-items:start}
}
.contact-lead{
  font-size:clamp(1.1rem,1.8vw,1.5rem);
  line-height:1.5;
  color:rgba(0,0,0,.6);
  margin:0 0 clamp(30px,4vw,50px);
}
.contact-details{
  display:flex;
  flex-direction:column;
  gap:clamp(20px,3vw,32px);
}
.contact-detail-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.contact-label{
  font-family:var(--heading);
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(0,0,0,.4);
}
.contact-link{
  font-size:1.1rem;
  font-weight:500;
  margin:0;
}
a.contact-link{transition:color .2s}
a.contact-link:hover{color:var(--red)}

.contact-form-wrap{
  background:var(--grey);
  border-radius:24px;
  padding:clamp(30px,4vw,50px);
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:clamp(24px,3vw,36px);
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-group label{
  font-family:var(--heading);
  font-size:.9rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(0,0,0,.5);
}
.form-group input,
.form-group textarea{
  font-family:var(--body);
  font-size:1rem;
  padding:14px 0;
  background:transparent;
  border:none;
  border-bottom:2px solid var(--rule);
  outline:none;
  color:var(--black);
  transition:border-color .3s;
  resize:none;
}
.form-group input:focus,
.form-group textarea:focus{
  border-color:var(--black);
}
.form-group input::placeholder,
.form-group textarea::placeholder{
  color:rgba(0,0,0,.25);
}
.btn-cta-contact{
  align-self:flex-start;
  margin-top:8px;
}
.blob-contact{
  width:400px;height:400px;
  right:-8%;bottom:-10%;
}
@media(max-width:600px){
  .blob-contact{
    width:180px;height:180px;
    right:-20%;bottom:-5%;
  }
}

/* ───── SERVICE DETAIL PAGES ───── */
.svc-detail{
  position:relative;
  padding:clamp(140px,14vw,200px) 0 clamp(60px,8vw,100px);
  overflow:visible;
  border-top:none;
}
.svc-detail-header{
  max-width:800px;
  margin-bottom:clamp(40px,5vw,64px);
}
.svc-detail-title{
  font-family:var(--heading);
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.95;
  letter-spacing:-.02em;
  margin:.2em 0 .4em;
}
.svc-detail-lead{
  font-family:var(--body);
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  line-height:1.6;
  color:rgba(0,0,0,.7);
  max-width:640px;
}

.svc-detail-meta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--rule);
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  margin-bottom:clamp(48px,6vw,80px);
}
.svc-meta-item{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:clamp(20px,2.5vw,32px) clamp(16px,2vw,24px);
  background:var(--white);
}
.svc-meta-label{
  font-family:var(--heading);
  font-size:.8rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(0,0,0,.4);
}
#o-mne .svc-meta-item{
  align-items:center;
  text-align:center;
}
#o-mne .svc-meta-label{
  color:var(--red);
  font-size:clamp(1rem,1.4vw,1.3rem);
}
.svc-meta-value{
  font-family:var(--body);
  font-size:.95rem;
  line-height:1.5;
}

.svc-detail-body{
  display:flex;
  flex-direction:column;
  gap:clamp(48px,6vw,80px);
  margin-bottom:clamp(48px,6vw,80px);
}
.svc-detail-text{
  max-width:680px;
}
.svc-detail-text h3{
  font-family:var(--heading);
  font-size:clamp(1.4rem,2.5vw,2rem);
  letter-spacing:.01em;
  margin-bottom:.6em;
}
.svc-detail-text p{
  font-family:var(--body);
  font-size:clamp(1rem,1.2vw,1.1rem);
  line-height:1.75;
  color:rgba(0,0,0,.7);
  margin-bottom:1em;
}
.svc-detail-text p:last-child{margin-bottom:0}

.svc-include-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--white);
  padding:clamp(24px,3vw,40px);
}
.svc-include-cta p{
  font-family:var(--heading);
  font-size:clamp(1.2rem,2vw,1.8rem);
  line-height:1.2;
  letter-spacing:.01em;
  color:var(--red);
  text-align:center;
}
.svc-detail-includes h3{
  font-family:var(--heading);
  font-size:clamp(1.4rem,2.5vw,2rem);
  letter-spacing:.01em;
  margin-bottom:clamp(24px,3vw,40px);
}
.svc-includes-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--rule);
}
.svc-includes-2col{
  grid-template-columns:repeat(2,1fr);
  gap:0;
  background:none;
  border:none;
}
.svc-includes-2col .svc-include-item{
  border-right:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
}
.svc-includes-2col .svc-include-item:nth-child(2n){border-right:none}
.svc-includes-2col .svc-include-item:nth-last-child(-n+2){border-bottom:none}
.svc-include-item{
  background:var(--white);
  padding:clamp(24px,3vw,40px);
}
.svc-include-item h4{
  font-family:var(--heading);
  font-size:clamp(1rem,1.4vw,1.3rem);
  letter-spacing:.02em;
  margin-bottom:.5em;
}
.svc-include-item p{
  font-family:var(--body);
  font-size:.92rem;
  line-height:1.65;
  color:rgba(0,0,0,.6);
}

/* --- Dual grid (Brandbook / Brand manuál) --- */
.svc-dual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
}
.svc-dual-col{
  background:var(--white);
  padding:clamp(28px,3vw,48px);
  display:flex;
  flex-direction:column;
}
.svc-dual-header{
  margin-bottom:clamp(20px,2vw,32px);
  padding-bottom:clamp(16px,2vw,24px);
  border-bottom:1px solid var(--rule);
}
.svc-dual-num{
  font-family:var(--heading);
  font-size:clamp(.9rem,1.2vw,1.1rem);
  opacity:.4;
  display:block;
  margin-bottom:8px;
}
.svc-dual-header h4{
  font-family:var(--heading);
  font-size:clamp(1.4rem,2vw,2rem);
  text-transform:uppercase;
  letter-spacing:.02em;
  margin:0 0 6px;
}
.svc-dual-purpose{
  font-size:.85rem;
  color:var(--red);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin:0;
}
.svc-dual-list{
  list-style:none;
  padding:0;
  margin:0 0 clamp(16px,2vw,24px);
}
.svc-dual-list li{
  padding:8px 0;
  font-size:.95rem;
}
.svc-dual-desc{
  margin-top:auto;
  font-size:.88rem;
  line-height:1.6;
  color:rgba(0,0,0,.55);
}
@media(max-width:700px){
  .svc-dual-grid{grid-template-columns:1fr}
}

.svc-detail-note{
  border-left:3px solid var(--red);
  padding:16px 24px;
  margin-top:24px;
}
.svc-detail-note p{margin:0;font-style:italic;color:var(--black);font-weight:600}

.svc-detail-cta{
  text-align:center;
  padding:clamp(48px,6vw,80px) 0;
  margin-bottom:clamp(32px,4vw,48px);
}
.svc-detail-cta h2{
  font-family:var(--heading);
  font-size:clamp(2rem,4vw,3.5rem);
  letter-spacing:-.01em;
  margin-bottom:.6em;
}

.svc-detail-nav{
  border-top:1px solid var(--rule);
  padding-top:clamp(24px,3vw,40px);
}
.svc-nav-label{
  display:block;
  font-family:var(--heading);
  font-size:.8rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(0,0,0,.4);
  margin-bottom:16px;
}
.svc-nav-links{
  display:flex;
  gap:clamp(16px,2vw,32px);
  flex-wrap:wrap;
}
.svc-nav-links a{
  font-family:var(--heading);
  font-size:clamp(1.2rem,2vw,1.6rem);
  color:var(--black);
  text-decoration:none;
  position:relative;
  transition:color .3s;
}
.svc-nav-links a::after{
  content:'';
  position:absolute;
  left:0;bottom:-.1em;
  width:0;height:2px;
  background:var(--red);
  transition:width .3s var(--ease);
}
.svc-nav-links a:hover::after{width:100%}
.svc-nav-links a:hover{color:var(--red)}

.blob-svc-detail{
  position:absolute;
  width:min(420px,50vw);
  aspect-ratio:1;
  right:-5%;
  top:0;
  background:var(--red);
  border-radius:50%;
  animation:plasma 6s infinite linear;
  pointer-events:none;
  z-index:1;
}

@media(max-width:900px){
  .svc-detail-meta{grid-template-columns:repeat(2,1fr)}
  .svc-includes-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .svc-detail-meta{grid-template-columns:1fr}
  .svc-includes-grid{grid-template-columns:1fr}
  .svc-nav-links{flex-direction:column;gap:12px}
  .blob-svc-detail{
    width:200px;
    right:-15%;
    top:0;
  }
}

/* ───── ABOUT / PROČ JÁ PAGE ───── */
.about-hero{
  position:relative;
  padding:clamp(160px,16vw,240px) 0 clamp(60px,6vw,80px);
  overflow:visible;
}
.about-hero-inner{
  max-width:800px;
}
.about-hero-title{
  font-family:var(--heading);
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.95;
  letter-spacing:-.02em;
  margin:.2em 0 .5em;
}
.about-hero-lead{
  font-family:var(--body);
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  line-height:1.65;
  color:rgba(0,0,0,.7);
  max-width:640px;
}
.blob-about-hero{
  position:absolute;
  width:min(420px,50vw);
  aspect-ratio:1;
  right:-5%;top:0;
  background:var(--red);
  border-radius:50%;
  animation:plasma 6s infinite linear;
  pointer-events:none;
  z-index:1;
}

/* Approach section */
.about-approach{
  padding:clamp(48px,6vw,100px) 0;
  border-top:1px solid var(--rule);
}
.approach-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,80px);
  align-items:center;
}
.approach-lead{
  font-family:var(--body);
  font-size:clamp(1.05rem,1.4vw,1.2rem);
  line-height:1.75;
  color:rgba(0,0,0,.7);
}
.process-flow{
  display:flex;
  align-items:center;
  gap:clamp(12px,2vw,24px);
  justify-content:center;
  flex-wrap:wrap;
}
.process-step{
  border:2px solid var(--red);
  border-radius:999px;
  padding:clamp(12px,1.5vw,18px) clamp(24px,3vw,40px);
}
.process-label{
  font-family:var(--heading);
  font-size:clamp(1rem,1.6vw,1.4rem);
  letter-spacing:.02em;
  color:var(--red);
}
.process-arrow{
  font-size:clamp(1.2rem,2vw,1.8rem);
  color:var(--red);
  font-weight:600;
}
.process-note{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(.85rem,1.1vw,1rem);
  color:var(--red);
  text-align:center;
  margin-top:clamp(12px,1.5vw,20px);
}

/* Idea section */
.about-idea{
  padding:clamp(48px,6vw,100px) 0;
}
.idea-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,80px);
  align-items:center;
}
.idea-title{
  font-family:var(--heading);
  font-size:clamp(2rem,4vw,3.5rem);
  letter-spacing:-.01em;
  margin-bottom:.5em;
}
.idea-text p{
  font-family:var(--body);
  font-size:clamp(1rem,1.2vw,1.1rem);
  line-height:1.75;
  color:rgba(0,0,0,.7);
  margin-bottom:1em;
}
.idea-text p:last-child{margin-bottom:0}

/* Venn diagram */
.venn-diagram{
  position:relative;
  width:100%;
  max-width:340px;
  aspect-ratio:1.3;
  margin:0 auto;
}
.venn-circle{
  position:absolute;
  width:60%;
  aspect-ratio:1;
  border-radius:50%;
  border:2px solid var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  top:15%;
}
.venn-circle span{
  font-family:var(--heading);
  font-size:clamp(.75rem,1.1vw,.95rem);
  letter-spacing:.03em;
  color:var(--red);
  text-align:center;
  padding:8px;
}
.venn-left{
  left:0;
}
.venn-left span{
  transform:translateX(-15%);
}
.venn-right{
  right:0;
}
.venn-right span{
  transform:translateX(15%);
}
.venn-center-label{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  font-family:var(--heading);
  font-size:clamp(.9rem,1.3vw,1.1rem);
  letter-spacing:.03em;
  color:var(--red);
  white-space:nowrap;
}

/* 5 Reasons */
.about-reasons{
  position:relative;
  padding:clamp(60px,8vw,120px) 0;
  background:var(--black);
  color:var(--white);
  overflow:hidden;
}
.about-reasons-header{
  margin-bottom:clamp(40px,5vw,64px);
}
.about-reasons-title{
  font-family:var(--heading);
  font-size:clamp(2.5rem,5vw,4.5rem);
  letter-spacing:-.01em;
}
.reasons-list{
  display:flex;
  flex-direction:column;
}
.reason-item{
  display:flex;
  align-items:flex-start;
  gap:clamp(16px,3vw,40px);
  padding:clamp(24px,3vw,40px) 0;
  border-top:1px solid rgba(255,255,255,.15);
}
.reason-item:last-child{
  border-bottom:1px solid rgba(255,255,255,.15);
}
.reason-num{
  font-family:var(--heading);
  font-size:clamp(1.2rem,2vw,1.8rem);
  color:var(--red);
  flex-shrink:0;
  min-width:2.5em;
}
.reason-body h3{
  font-family:var(--heading);
  font-size:clamp(1.2rem,2vw,1.8rem);
  letter-spacing:.01em;
  margin-bottom:.3em;
}
.reason-body p{
  font-family:var(--body);
  font-size:clamp(.95rem,1.1vw,1.05rem);
  line-height:1.7;
  color:rgba(255,255,255,.6);
}
.blob-about-reasons{
  position:absolute;
  width:min(350px,45vw);
  aspect-ratio:1;
  right:-8%;bottom:-10%;
  background:var(--red);
  border-radius:50%;
  animation:plasma 6s infinite linear;
  pointer-events:none;
  z-index:0;
  opacity:.3;
}

/* About CTA */
.about-cta{
  background:var(--white);
}

@media(max-width:768px){
  .approach-grid{grid-template-columns:1fr}
  .idea-grid{grid-template-columns:1fr}
  .idea-visual{order:-1}
}

/* ───── PORTFOLIO LIST PAGE ───── */
.portfolio-hero{
  padding:clamp(140px,14vw,200px) 0 clamp(40px,4vw,60px);
}
.portfolio-hero-title{
  font-family:var(--heading);
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.95;
  letter-spacing:-.02em;
  margin:.2em 0 .4em;
}
.portfolio-hero-lead{
  font-family:var(--body);
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  line-height:1.6;
  color:rgba(0,0,0,.7);
  max-width:640px;
}

.portfolio-filter{
  padding:0 0 clamp(40px,5vw,60px);
}
.portfolio-filter-nav{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem 1.5rem;
  font-family:var(--heading);
  font-size:1.1rem;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.portfolio-filter-nav li{
  cursor:pointer;
  color:rgba(0,0,0,.4);
  transition:color .25s;
  padding:6px 0;
  border-bottom:2px solid transparent;
}
.portfolio-filter-nav li:hover,
.portfolio-filter-nav li.active{
  color:var(--black);
  border-bottom-color:var(--red);
}

.portfolio-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(16px,2vw,30px);
}
.portfolio-item{
  display:block;
  position:relative;
  overflow:hidden;
  border-radius:12px;
  background:var(--grey);
  transition:transform .4s var(--ease),box-shadow .4s;
}
.portfolio-item:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 60px rgba(0,0,0,.1);
}
.portfolio-img{
  position:relative;
  overflow:hidden;
}
.portfolio-img img{
  width:100%;
  display:block;
  transition:transform .5s var(--ease);
}
.portfolio-item:hover .portfolio-img img{
  transform:scale(1.03);
}
.portfolio-img-placeholder{
  aspect-ratio:16/10;
  background:linear-gradient(135deg,#e0e0e0,#c8c8c8);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--body);
  font-size:.9rem;
  color:rgba(0,0,0,.3);
}
.portfolio-img-real{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}
.portfolio-item-info{
  padding:clamp(16px,2vw,24px);
}
.portfolio-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  margin-bottom:.6rem;
}
.portfolio-tags span{
  font-family:var(--body);
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:500;
  color:var(--red);
}
.portfolio-item-info h3{
  font-family:var(--heading);
  font-size:clamp(1.3rem,2vw,1.8rem);
  text-transform:uppercase;
  letter-spacing:.02em;
  margin:0 0 .3em;
}
.portfolio-item-info p{
  font-family:var(--body);
  font-size:.9rem;
  color:rgba(0,0,0,.55);
  margin:0;
  line-height:1.5;
}

.portfolio-cta{background:var(--white)}

@media(max-width:600px){
  .portfolio-items{grid-template-columns:1fr}
}

/* ───── PORTFOLIO DETAIL PAGE ───── */
.pf-detail{
  position:relative;
  padding:clamp(140px,14vw,200px) 0 clamp(60px,8vw,100px);
  overflow:visible;
}
.pf-detail-header{
  max-width:800px;
  margin-bottom:clamp(40px,5vw,64px);
}
.pf-detail-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom:1rem;
}
.pf-detail-tags span{
  font-family:var(--body);
  font-size:.8rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--red);
  border:1px solid var(--red);
  border-radius:20px;
  padding:4px 14px;
}
.pf-detail-title{
  font-family:var(--heading);
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.95;
  letter-spacing:-.02em;
  margin:0 0 .4em;
}
.pf-detail-lead{
  font-family:var(--body);
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  line-height:1.6;
  color:rgba(0,0,0,.7);
  max-width:640px;
}

.pf-gallery{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:clamp(12px,1.5vw,20px);
  margin-bottom:clamp(32px,4vw,48px);
}
.pf-gallery-side{
  display:flex;
  flex-direction:column;
  gap:clamp(12px,1.5vw,20px);
}
.pf-gallery img{
  width:100%;
  display:block;
  border-radius:12px;
  object-fit:cover;
}
.pf-img-placeholder{
  background:linear-gradient(135deg,#e0e0e0,#c8c8c8);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--body);
  font-size:.85rem;
  color:rgba(0,0,0,.3);
}
.pf-img-large{
  aspect-ratio:16/10;
  height:100%;
}
.pf-img-small{
  aspect-ratio:4/3;
  flex:1;
}
.pf-img-wide{
  aspect-ratio:21/9;
  width:100%;
}

.pf-detail-meta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--rule);
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  margin-bottom:clamp(48px,6vw,80px);
}
.pf-meta-item{
  background:var(--white);
  padding:clamp(16px,2vw,24px) clamp(12px,1.5vw,20px);
}
.pf-meta-label{
  display:block;
  font-family:var(--heading);
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:rgba(0,0,0,.45);
  margin-bottom:6px;
}
.pf-meta-value{
  font-family:var(--body);
  font-size:.95rem;
  line-height:1.5;
}

.pf-detail-body{
  display:flex;
  flex-direction:column;
  gap:clamp(48px,6vw,80px);
  margin-bottom:clamp(48px,6vw,80px);
}
.pf-detail-text{
  max-width:680px;
}
.pf-detail-text h3{
  font-family:var(--heading);
  font-size:clamp(1.4rem,2.5vw,2rem);
  letter-spacing:.01em;
  margin-bottom:.6em;
}
.pf-detail-text p{
  font-family:var(--body);
  font-size:clamp(1rem,1.2vw,1.1rem);
  line-height:1.75;
  color:rgba(0,0,0,.7);
  margin-bottom:1em;
}
.pf-detail-text p:last-child{margin-bottom:0}

.pf-detail-img{
  max-width:100%;
  margin-bottom:clamp(32px,4vw,56px);
}

.pf-img-real{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
  display:block;
}
.pf-gallery .pf-img-real.pf-img-large{
  aspect-ratio:16/10;
}
.pf-gallery .pf-img-real.pf-img-small{
  aspect-ratio:4/3;
  flex:1;
}
.pf-img-real.pf-img-wide{
  aspect-ratio:21/9;
}
.pf-img-16by9{
  aspect-ratio:16/9!important;
}

.pf-detail-img-grid{
  display:grid;
  gap:clamp(12px,1.5vw,20px);
}
.pf-grid-2{
  grid-template-columns:1fr 1fr;
}
.pf-grid-3{
  grid-template-columns:1fr 1fr 1fr;
}
.pf-detail-img-grid .pf-img-real{
  aspect-ratio:4/5;
}
.pf-figure{
  margin:0;
}
.pf-figure .pf-img-real{
  width:100%;
}
.pf-caption{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(.85rem,1.1vw,1rem);
  color:rgba(0,0,0,.5);
  padding-top:.6em;
}
.pf-quote{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.2rem,2vw,1.6rem);
  line-height:1.5;
  color:rgba(0,0,0,.75);
  border-left:3px solid var(--red);
  padding-left:1.2em;
  margin:1.2em 0;
  line-height:1.4;
}

.pf-detail-cta{
  text-align:center;
  padding:clamp(48px,6vw,80px) 0;
  border-top:1px solid var(--rule);
  margin-bottom:clamp(32px,4vw,48px);
}
.pf-detail-cta h2{
  font-family:var(--heading);
  font-size:clamp(2rem,4vw,3.5rem);
  letter-spacing:-.01em;
  margin-bottom:.6em;
}

.pf-detail-nav{
  border-top:1px solid var(--rule);
  padding-top:clamp(24px,3vw,40px);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.pf-nav-back{
  font-family:var(--body);
  font-size:.95rem;
  font-weight:500;
  transition:color .2s;
}
.pf-nav-back:hover{color:var(--red)}
.pf-nav-projects{
  display:flex;
  gap:2rem;
}
.pf-nav-prev,
.pf-nav-next{
  font-family:var(--body);
  font-size:.9rem;
  font-weight:500;
  position:relative;
  transition:color .2s;
}
.pf-nav-prev:hover,
.pf-nav-next:hover{color:var(--red)}

.blob-portfolio-detail{
  position:absolute;
  width:min(420px,50vw);
  aspect-ratio:1;
  right:-5%;
  top:0;
  background:var(--red);
  border-radius:50%;
  animation:plasma 6s infinite linear;
  pointer-events:none;
  z-index:1;
}

/* ───── NÁRUČ DĚTEM — BRAND DECORATIVE ELEMENTS ───── */
.nd-deco{
  position:absolute;
  pointer-events:none;
  z-index:0;
  opacity:.12;
}
@keyframes nd-spin-slow{
  to{transform:rotate(360deg)}
}
@keyframes nd-float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

.nd-deco-1{
  width:min(280px,30vw);
  top:60px;
  right:-4%;
  opacity:.18;
  animation:nd-spin-slow 40s linear infinite;
}
.nd-deco-2{
  width:min(60px,8vw);
  top:320px;
  left:6%;
  opacity:.25;
  animation:nd-float 5s ease-in-out infinite;
}
.nd-deco-3{
  width:min(120px,15vw);
  top:1400px;
  right:3%;
  opacity:.1;
  animation:nd-spin-slow 50s linear infinite reverse;
}
.nd-deco-4{
  width:min(90px,12vw);
  top:2200px;
  left:-2%;
  opacity:.15;
  animation:nd-float 6s ease-in-out infinite 1s;
}
.nd-deco-5{
  width:min(180px,22vw);
  top:3200px;
  right:-3%;
  opacity:.08;
  animation:nd-spin-slow 35s linear infinite;
}
.nd-deco-6{
  width:min(70px,10vw);
  top:2800px;
  left:8%;
  opacity:.2;
  animation:nd-float 4.5s ease-in-out infinite .5s;
}

@media(max-width:900px){
  .pf-gallery{grid-template-columns:1fr}
  .pf-detail-meta{grid-template-columns:repeat(2,1fr)}
  .pf-grid-3{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .pf-detail-meta{grid-template-columns:1fr}
  .pf-detail-nav{flex-direction:column;align-items:flex-start}
  .pf-nav-projects{gap:1rem}
  .blob-portfolio-detail{width:200px;right:-15%;top:0}
  .pf-grid-2,.pf-grid-3{grid-template-columns:1fr}
  .nd-deco{opacity:.08}
  .nd-deco-1{width:160px;right:-8%}
  .nd-deco-3{width:80px}
  .nd-deco-5{width:100px}
  .pf-detail-img-grid .pf-img-real{aspect-ratio:auto}
}

/* ───── BLOG LIST PAGE ───── */
.blog-hero{
  padding:clamp(140px,12vw,200px) 0 clamp(40px,5vw,80px);
}
.blog-hero-inner{
  max-width:680px;
}
.blog-hero .upper-title{
  font-size:clamp(.85rem,1vw,1rem);
  letter-spacing:.15em;
  color:var(--red);
  display:block;
  background:none;
  padding:0;
  border-radius:0;
  margin-bottom:1em;
}
.blog-hero-title{
  font-family:var(--heading);
  font-size:clamp(2.8rem,7vw,5.5rem);
  letter-spacing:-.01em;
  line-height:1;
  margin-bottom:.4em;
}
.blog-hero-lead{
  font-family:var(--body);
  font-size:clamp(1rem,1.4vw,1.15rem);
  line-height:1.7;
  color:rgba(0,0,0,.6);
  max-width:520px;
}

.blog-grid{
  padding-bottom:clamp(60px,8vw,120px);
}
.blog-items{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
  gap:clamp(32px,4vw,48px);
}

.blog-card{
  display:flex;
  flex-direction:column;
  border-top:1px solid var(--rule);
}
.blog-card-img{
  display:block;
  overflow:hidden;
}
.blog-img-placeholder{
  width:100%;
  aspect-ratio:16/10;
  background:var(--grey);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--body);
  font-size:.85rem;
  color:rgba(0,0,0,.3);
  transition:transform .5s var(--ease);
}
.blog-card:hover .blog-img-placeholder{
  transform:scale(1.03);
}
.blog-card-body{
  padding:clamp(16px,2vw,24px) 0;
}
.blog-card-meta{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.75em;
}
.blog-card-tag{
  font-family:var(--heading);
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--red);
}
.blog-card-date{
  font-family:var(--body);
  font-size:.8rem;
  color:rgba(0,0,0,.4);
}
.blog-card-title{
  font-family:var(--heading);
  font-size:clamp(1.3rem,2vw,1.7rem);
  letter-spacing:.01em;
  line-height:1.2;
  margin-bottom:.5em;
}
.blog-card-title a{transition:color .2s}
.blog-card-title a:hover{color:var(--red)}
.blog-card-excerpt{
  font-family:var(--body);
  font-size:clamp(.9rem,1.1vw,1rem);
  line-height:1.7;
  color:rgba(0,0,0,.6);
}

.blog-cta{
  background:var(--dark);
  color:var(--white);
  text-align:center;
  padding:clamp(60px,8vw,120px) 0;
}
.blog-cta h2{
  font-family:var(--heading);
  font-size:clamp(2rem,5vw,4rem);
  letter-spacing:-.01em;
  margin-bottom:.6em;
}

/* ───── BLOG DETAIL PAGE ───── */
.blog-detail{
  padding:clamp(140px,12vw,200px) 0 clamp(48px,6vw,80px);
}
.blog-detail-header{
  margin-bottom:clamp(32px,4vw,48px);
}
.blog-detail-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1rem;
  margin-bottom:1.5em;
}
.blog-detail-back{
  font-family:var(--body);
  font-size:.9rem;
  font-weight:500;
  transition:color .2s;
}
.blog-detail-back:hover{color:var(--red)}
.blog-detail-title{
  font-family:var(--heading);
  font-size:clamp(2.5rem,6vw,5rem);
  letter-spacing:-.01em;
  line-height:1.05;
  margin-bottom:.35em;
  max-width:820px;
}
.blog-detail-lead{
  font-family:var(--body);
  font-size:clamp(1.05rem,1.5vw,1.25rem);
  line-height:1.7;
  color:rgba(0,0,0,.55);
  max-width:640px;
}

.blog-detail-image{
  margin-bottom:clamp(40px,5vw,64px);
}
.blog-img-placeholder-lg{
  aspect-ratio:21/9;
  min-height:280px;
}

.blog-detail-body{
  max-width:680px;
  margin-bottom:clamp(48px,6vw,80px);
}
.blog-detail-body h2{
  font-family:var(--heading);
  font-size:clamp(1.5rem,2.5vw,2.2rem);
  letter-spacing:.01em;
  margin-top:2em;
  margin-bottom:.6em;
}
.blog-detail-body h2:first-child{margin-top:0}
.blog-detail-body p{
  font-family:var(--body);
  font-size:clamp(1rem,1.2vw,1.1rem);
  line-height:1.8;
  color:rgba(0,0,0,.7);
  margin-bottom:1.2em;
}
.blog-detail-body ul,
.blog-detail-body ol{
  padding-left:1.5em;
  margin-bottom:1.2em;
}
.blog-detail-body ul{list-style:disc}
.blog-detail-body ol{list-style:decimal}
.blog-detail-body li{
  font-family:var(--body);
  font-size:clamp(1rem,1.2vw,1.1rem);
  line-height:1.8;
  color:rgba(0,0,0,.7);
  margin-bottom:.4em;
}
.blog-detail-body blockquote{
  border-left:3px solid var(--red);
  margin:2em 0;
  padding:1em 0 1em 1.5em;
  font-family:var(--serif);
  font-size:clamp(1.15rem,1.6vw,1.35rem);
  font-style:italic;
  line-height:1.6;
  color:rgba(0,0,0,.75);
}

.blog-detail-author{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:clamp(24px,3vw,40px) 0;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  margin-bottom:clamp(32px,4vw,48px);
}
.blog-author-avatar{
  width:56px;
  height:56px;
  flex-shrink:0;
}
.blog-img-placeholder-avatar{
  width:56px;
  height:56px;
  aspect-ratio:1;
  border-radius:50%;
  font-size:.9rem;
  font-weight:600;
  background:var(--red);
  color:var(--white);
}
.blog-author-info{
  display:flex;
  flex-direction:column;
  gap:.15em;
}
.blog-author-info strong{
  font-family:var(--body);
  font-size:1rem;
  font-weight:600;
}
.blog-author-info span{
  font-family:var(--body);
  font-size:.85rem;
  color:rgba(0,0,0,.5);
}

.blog-detail-nav{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  padding-bottom:clamp(32px,4vw,48px);
}
.blog-nav-prev,
.blog-nav-next{
  display:flex;
  flex-direction:column;
  gap:.3em;
  transition:color .2s;
  max-width:45%;
}
.blog-nav-next{align-items:flex-end;text-align:right;margin-left:auto}
.blog-nav-label{
  font-family:var(--body);
  font-size:.8rem;
  color:rgba(0,0,0,.45);
}
.blog-nav-title{
  font-family:var(--heading);
  font-size:clamp(1rem,1.5vw,1.3rem);
  letter-spacing:.01em;
}
.blog-nav-prev:hover,
.blog-nav-next:hover{color:var(--red)}

.blob-blog-detail{
  position:absolute;
  width:min(380px,45vw);
  aspect-ratio:1;
  right:-5%;
  top:0;
  background:var(--red);
  border-radius:50%;
  animation:plasma 6s infinite linear;
  pointer-events:none;
  z-index:1;
}

/* ───── RESPONSIVE BREAKPOINTS ───── */

/* Tablet (max 900px) */
@media(max-width:900px){
  .hero{min-height:100vh;min-height:100svh}
  .hero-bg{background-position:90% center}
  .hero-heading{font-size:clamp(3.5rem,10vw,7rem)}
  .hero-sub{font-size:clamp(1.4rem,3vw,2rem)}
  .rotating-text{white-space:normal}

  .feedback-cards{grid-template-columns:1fr}
  .fb-logo img{height:50px}

  .blob-cta{width:300px;height:300px;left:-10%;top:-15%}
  .blob-final{width:300px;height:300px;left:-8%;top:-15%}
  .blob-fb{width:220px;height:220px}
  .blob-why{width:180px;height:180px}
  .blob-svc{width:180px;height:180px;right:-30px;top:-30px}

  .section-cta{padding:clamp(60px,10vw,120px) 0}
  .section-final-cta{padding:clamp(60px,10vw,150px) 0}
  .final-heading{font-size:clamp(2rem,5vw,4rem)}
  .cta-heading{font-size:clamp(2rem,5vw,5rem)}

  .blog-items{grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}
  .blog-detail-nav{gap:1.5rem}
  .blob-blog-detail{width:min(300px,40vw)}
}

/* Mobile (max 600px) */
@media(max-width:600px){
  .hero{min-height:100vh;min-height:100svh;align-items:flex-end;padding:0 0 clamp(80px,15vw,140px)}
  .hero-bg{background-position:90% center}
  .hero-heading{font-size:clamp(2.8rem,11vw,5rem);text-shadow:none}
  .hero-sub{font-size:clamp(1.2rem,4vw,1.6rem)}
  .rotating-text{white-space:normal}

  .hero-blob{width:min(300px,70vw);left:-15%;bottom:-10%}

  .feedback-cards{gap:12px}
  .feedback-card{padding:clamp(20px,4vw,28px)}
  .feedback-card blockquote{font-size:clamp(.95rem,3.5vw,1.2rem)}
  .fb-bottom{flex-direction:column;align-items:flex-start;gap:.75rem}
  .fb-logo img{height:40px}
  .fb-icon{width:30px;height:30px;font-size:1rem}
  .fb-text{padding-right:40px}

  .client-logo-img{height:22px}
  .marquee-track{gap:30px}

  .blob-cta{width:200px;height:200px;left:-15%;top:-10%}
  .blob-final{width:200px;height:200px;left:-12%;top:-10%}
  .blob-fb{width:150px;height:150px;left:-5%;top:2%}
  .blob-why{width:140px;height:140px}
  .blob-svc{width:140px;height:140px;right:-20px;top:-20px}

  .why-item{gap:1rem;padding:clamp(16px,3vw,24px) 0}
  .why-num{font-size:clamp(1.5rem,5vw,2rem);min-width:40px}
  .why-arrow{width:36px;height:36px;font-size:1rem}

  .footer-bottom{flex-direction:column;gap:1rem}
  .copyright{margin-left:0;text-align:left}
  .footer-nav{gap:.5rem 1rem}

  .final-heading{font-size:clamp(1.8rem,8vw,3rem)}
  .cta-heading{font-size:clamp(1.8rem,8vw,3rem)}
  .heading-serif{display:block}

  .contact-grid{gap:clamp(24px,4vw,40px)}
  .contact-heading{font-size:clamp(2rem,7vw,3rem)}

  .blog-items{grid-template-columns:1fr}
  .blog-detail-nav{flex-direction:column;align-items:flex-start}
  .blog-nav-prev,.blog-nav-next{max-width:100%}
  .blob-blog-detail{width:200px;right:-15%;top:0}
}

/* Small mobile (max 380px) */
@media(max-width:380px){
  .hero-heading{font-size:2.5rem}
  .hero-sub{font-size:1.1rem}
  .logo{font-size:1.25rem}
  .logo-role{font-size:.65rem}
  .btn-cta{font-size:1rem;padding:14px 28px}
}

/* ───── SCROLL ANIMATIONS (SAL-like) ───── */
[data-sal]{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
[data-sal].sal-animate{
  opacity:1;
  transform:none;
}
@media(prefers-reduced-motion:reduce){
  [data-sal]{opacity:1;transform:none;transition:none}
}
