/* parkland.dev — shared design tokens
   Linked site-wide from layout.html before any page-specific stylesheet.
   Only :root variables + a minimal reset live here so this file is safe to
   load on every page without altering existing layouts. */
:root {
  /* text */
  --cream:       #ece4d7;            /* primary text, signed-in wordmark */
  --cream-dim:   #b9b0a1;            /* node titles at rest, button text */
  --grey:        #8c8478;
  --grey-faint:  #5f594f;            /* meta, index, clock, locked padlock */
  --line:        rgba(236, 228, 215, 0.07);

  /* type */
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* accents (Dashboard scheme — applied on hover only) */
  --accent-epicpm: #9da0f2;          /* periwinkle */
  --accent-movies: #e8b491;          /* peach */
  --accent-pickem: #92c49b;          /* sage — also the unlocked padlock */
}

* { box-sizing: border-box; }
