/* Corner Lot Studio — the theft mark for the standalone work pages.

   The stills in the lightbox get their mark baked in (scripts/watermark.py).
   These pages are the other way in: /work/*.html is publicly served and renders
   the real piece at full size. Same posture, laid over the top.

   The tile is a dark drop under a light face, so it reads on the cream pages and
   on the night slabs alike — the same trick the baked mark uses.

   Add ?clean=1 to a work page to drop the overlay. That's how the stills get
   captured, so the master doesn't come out double-marked. */

body.marked::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='210'%3E%3Cg transform='rotate(-30 170 105)' font-family='Helvetica,Arial,sans-serif' font-size='15' font-weight='700' letter-spacing='5' text-anchor='middle'%3E%3Ctext x='171' y='106' fill='%23000' fill-opacity='.11'%3ECORNER LOT STUDIO%3C/text%3E%3Ctext x='170' y='105' fill='%23fff' fill-opacity='.22'%3ECORNER LOT STUDIO%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

@media print {
  body.marked::after { position: absolute; }
}
