/* Faint graph-paper texture — sketchbook/process feel, ties into the
   "restless creative process" side of the brand story. Pure CSS
   repeating-linear-gradient, no image file. Apply .vcs-grid-paper on a
   section/container in Elementor. */

.vcs-grid-paper{
	background-image:
		repeating-linear-gradient(0deg, rgba(21,19,15,0.06) 0, rgba(21,19,15,0.06) 1px, transparent 1px, transparent 32px),
		repeating-linear-gradient(90deg, rgba(21,19,15,0.06) 0, rgba(21,19,15,0.06) 1px, transparent 1px, transparent 32px);
	background-size: 32px 32px;
}

/* A slightly bolder variant for a section that wants the texture more
   present — add alongside .vcs-grid-paper */
.vcs-grid-paper--bold{
	background-image:
		repeating-linear-gradient(0deg, rgba(21,19,15,0.1) 0, rgba(21,19,15,0.1) 1px, transparent 1px, transparent 32px),
		repeating-linear-gradient(90deg, rgba(21,19,15,0.1) 0, rgba(21,19,15,0.1) 1px, transparent 1px, transparent 32px);
}
