/* site/css/motion.css */
/* Rewritten 2026-09-10 -- this file used to paint a permanent, full-viewport,
   animated black background behind the ENTIRE site (body::before was a fixed
   radial gradient up to rgba(0,0,0,0.96), covering every page at all times,
   independent of anything in style.css) with an off-white "phase" wash that
   only ever peaked at 0.90 opacity before cycling back down -- so black was
   visible through the cream everywhere, always, on every page, no matter
   what style.css said. This is why the site still looked black after the
   style.css theme flip. Figma's actual pages are flat, static cream with no
   animated vignette at all, so this layer is removed rather than recoloured. */

/* Ensure light sections read properly without hard cut panels */
.section--light{
  position:relative;
}
.section--light::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background: rgba(246,245,241,0.82);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
