/* The holding page, and nothing else, uses this.
   It does not load site.css, does not carry the menu, the footer or the wordmark,
   and shares no class with any of them. That is the whole point of it: every piece
   of work on the templates and the branding happens behind the preview, and none of
   it can reach the live site by accident. When there is a site, this file and its
   template go. */
:root{color-scheme:light;--ink:#1d2230;--muted:#5b6577;--bg:#fbfaf8}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--ink);
  font:400 16px/1.6 ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif}
.holding{min-height:100svh;display:grid;place-items:center;padding:2rem;text-align:center}
.holding h1{margin:0;font:600 clamp(1.6rem,6vw,2.6rem)/1.2 inherit;letter-spacing:-.01em}
.holding p{margin:.9em 0 0;color:var(--muted)}
