/* tokens.css — round 2: LIGHT ONLY. The Temple lives in daylight and clouds.
   (Deliberate deviation from the dark-variant cap: the brand is light — recorded in design/tokens.md.) */
/* The two families, self-hosted. Same two woff2 files Google was serving (verified
   byte-identical to fonts.gstatic.com), now on our own origin so the browser does not
   have to open a second connection and wait for a second stylesheet before it knows
   what to fetch. Both are VARIABLE fonts, so one file covers the whole weight range
   the site asks for (Merriweather 400/500, Roboto 400/500) instead of five faces.
   font-display and the latin unicode-range are copied verbatim from Google's own
   css2 response, so the swap behaviour and the subset are unchanged. */
@font-face{
  font-family:'Merriweather';
  font-style:normal;
  font-weight:400 700;
  font-stretch:100%;
  font-display:swap;
  src:url(../assets/merriweather-latin.woff2?v=1786426043) format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Roboto';
  font-style:normal;
  font-weight:400 500;
  font-stretch:100%;
  font-display:swap;
  src:url(../assets/roboto-latin.woff2?v=1786426044) format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  color-scheme: light;
  --color-primary:#d9b662; --on-primary:#3a3040;
  --color-accent:#5f63c0;
  --color-success:#1a7f4e; --color-warning:#a06a00; --color-error:#a04545;
  --gold:#e7cf8d; --sky:#eef5fb;
  --color-bg:#ffffff; --color-surface:#f8f4ec; --color-border:#e6e0d2;
  --color-text:#3f3a55; --color-text-muted:#6d6787;
  --space-1:0.5rem; --space-2:1rem; --space-3:1.5rem;
  --radius-arch:999px 999px 12px 12px; --radius-md:12px; --radius-sm:6px;
  --shadow-veil:0 1px 2px rgb(63 58 85 / .06);
  --shadow-lifted:0 8px 30px rgb(63 58 85 / .14);
  --shadow-sanctum:0 24px 80px rgb(63 58 85 / .22);
  --ease-veil:cubic-bezier(.22,1,.36,1);
  --t-breath:900ms; --t-move:240ms; --t-touch:120ms;
  --font-serif:'Merriweather',Georgia,serif;
  --font-sans:'Roboto',system-ui,sans-serif;
}
