I am trying to create in tikz an image like this illustration of the winset of the Q in two-dimensional space (drawn in Inkscape).
The code below draws the circles as nodes, since that seems to be the easiest way to ensure they all go through the same arbitrary point Q (I am not for present purposes concerned about the labels for the circles) and comes close to what I want, but I would prefer a) no shading at all in the non-overlapping sections and b) darker shading in the overlapping sections. Any suggestions?
\documentclass[11pt]{article}
\usepackage[english]{babel}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{amsfonts}
\usepackage{adjustbox}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{calc,matrix,decorations.pathreplacing,arrows.meta,patterns,decorations.markings,shapes,shapes.misc,positioning}
\usetikzlibrary{through,intersections}
\usepackage{graphicx}
\begin{document}
\begin{adjustbox}{max totalsize={\textwidth}{.9\textheight},center}
\begin{tikzpicture}
\node (q) [label=below:{Q},circle,fill=black,inner sep=0pt,minimum size=1pt] at (0,0) {\large\textbullet};
\node (a) [label=below:{A},circle,fill=black,inner sep=0pt,minimum size=1pt] at (3.5,3) {\large\textbullet};
\node (b) [label=below:{B},circle,fill=black,inner sep=0pt,minimum size=1pt] at (-5.5,1) {\large\textbullet};
\node (c) [label=below:{C},circle,fill=black,inner sep=0pt,minimum size=1pt] at (1,-4.5) {\large\textbullet};
\begin{scope}[blend group=color burn]
\begin{scope}[blend group=multiply]
\node [draw,thick, fill=lightgray,fill opacity=.1] at (a) [circle through={(q)}] {};
\node [draw,thick, fill=lightgray,fill opacity=.1] at (b) [circle through={(q)}] {};
\node [draw,thick ,fill=lightgray,fill opacity=.1] at (c) [circle through={(q)}] {};
\end{scope}
\end{scope}
\end{tikzpicture}
\end{adjustbox}
\end{document}


\clips and perhaps this could be a start: https://tex.stackexchange.com/questions/614043/how-to-draw-diagram-of-circles-and-curves-with-pattern-filled-intersections-usi. – Juan Castaño Oct 07 '21 at 19:39