/* Comans Fine Paper v1.
 * Load after the existing shared and page styles.
 * The approved 65% preview strength is baked into the image: use full opacity.
 * Preserve the existing #f5f3ef background colour as the loading/failure fallback.
 */
:root {
  --cs-paper-texture: url("../images/comans-fine-paper-v1.webp");
  --cs-paper-texture-size: 384px;
}

.cs-design .cs-paper,
.cs-page-index .home-projects,
.cs-page-policy .policy-reading {
  background-image: var(--cs-paper-texture);
  background-repeat: repeat;
  background-size: var(--cs-paper-texture-size) var(--cs-paper-texture-size);
  background-position: 0 0;
  background-attachment: scroll;
}

@media print {
  .cs-design .cs-paper,
  .cs-page-index .home-projects,
  .cs-page-policy .policy-reading {
    background-image: none !important;
  }
}
