/* ============================================================
   HKODO shared theme — 24 Jul
   · the dojo backdrop on every page (replaces the flat beige)
   · loaded from site root so url() resolves for /, /subpages, /admin
   The artwork bg-dojo-inner.jpg already ships in assets/art/.
   ============================================================ */

/* the dojo behind everything — fixed, faint, never in the way */
body::before{
  content:"";position:fixed;inset:0;z-index:-2;pointer-events:none;
  background:
    radial-gradient(1200px 600px at 50% -100px, rgba(251,247,238,.55), rgba(244,236,221,0) 60%),
    url("assets/art/bg-dojo-inner.jpg") center/cover no-repeat;
  opacity:.12;
}
/* a whisper of shoji-screen grid over the beige, so empty space still reads "dojo" */
body{
  background-image:
    repeating-linear-gradient(0deg, rgba(36,59,83,.022) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, rgba(36,59,83,.022) 0 1px, transparent 1px 96px);
}
@media print{ body::before{display:none} body{background-image:none} }
