/* ==========================================================================
   THE TALE OF CANTILLON · the leaf's own sheet
   --------------------------------------------------------------------------
   Loads after edition.css and writes only into the `page` layer. It carries
   nothing but the seating data for this leaf's four plates: the numbers the
   kit's PLATE FIT rule (edition.css) needs to size each plate so it can be
   seen whole, without scrolling, at the reader's own viewport.

   The plates themselves are untouchable: byte-identical to the live site,
   seating and wells only.

   FIT WINS (the creator's ruling): every plate is seated at
   min(100%, 55rem, 80vh * aspect), so no plate stands taller than 80vh
   wherever the viewport allows it. Where a plate cannot hold both the fit and
   its own 13px read floor, the inline plate is an at-a-glance STAMP and the
   fold-out carries the reading, which is the pocket-plate convention every
   plate on the site already lives under below 1000px (web-print-craft §9).

   Measured, rendered SVG box. `read` is the smallest READ text in the plate
   at that seating, in effective px; a value under 13 marks a stamp.

   1512 x 860, the creator's register (80vh = 688px):
     I    786 x 688  80.0vh   read 14.74
     II   558 x 688  80.0vh   read 10.12   STAMP · urged fold-out
     III  855 x 688  80.0vh   read 13.89
     IV   880 x 664  77.3vh   read 13.20   (held at the 55rem plate cap)

   1024 x 768, where the short viewport bites hardest (80vh = 614px):
     I    702 x 614  80.0vh   read 13.17
     II   498 x 614  80.0vh   read  9.04   STAMP · urged fold-out
     III  763 x 614  80.0vh   read 12.40   STAMP by 0.6px
     IV   814 x 614  80.0vh   read 12.21   STAMP by 0.8px

   2560 x 1440, where the trade stops biting (80vh = 1152px):
     I    880 x 770  53.5vh   read 16.50
     II   880 x 1085 75.3vh   read 15.95   every plate a reading plate again
     III  880 x 708  49.2vh   read 14.30
     IV   880 x 664  46.1vh   read 13.20

   The full record, including the faint annotation tier, is in NOTES.md.
   ========================================================================== */

@layer page {

/* The svg carries the same viewBox pair so the mat clip (edition.css)
   still resolves when the fold-out moves the node out of its figure. */
#fig-plate-1, #svg-plate-1 { --plate-vb-w: 800; --plate-vb-h: 700; }
#fig-plate-2, #svg-plate-2 { --plate-vb-w: 800; --plate-vb-h: 986; }
#fig-plate-3, #svg-plate-3 { --plate-vb-w: 800; --plate-vb-h: 644; }
#fig-plate-4, #svg-plate-4 { --plate-vb-w: 800; --plate-vb-h: 604; }
#fig-plate-1 { --plate-read-min: 15; }
#fig-plate-2 { --plate-read-min: 14.5; }
#fig-plate-3 { --plate-read-min: 13; }
#fig-plate-4 { --plate-read-min: 12; }

} /* @layer page */
