/* Fond filigrane parallax — CS Haut-Plateau (design Claude « fond-filigrane »).
   Calque fixe derrière le contenu : logos officiels à 5 % d'opacité, tailles variées.
   Feuille autonome (hors build webpack) : chargée par functions.php sur tout le site public. */
body { background: #f3f2f0; }

.wm-layer {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.wm-layer img {
	position: absolute;
	height: auto;
	max-width: none;
	opacity: 0.05;            /* l'image est à pleine opacité, le filigrane se règle ici */
	will-change: transform;
	user-select: none;
	border-radius: 0 !important;
}

/* Le contenu du site passe au-dessus du calque. */
/* (L'en-tête est fixe avec son propre z-index : voir _dev/css/site/cshp-nav.scss.) */
#site-content,
#site-footer,
.cshp-footer {
	position: relative;
	z-index: 1;
}

@media print {
	.wm-layer { display: none; }
}
