/* ==========================================================================
   Dancing Leaf Lodge — design tokens
   Single source of truth for the prairie palette, ported from the approved
   mockups (public + admin). Light = hay paper / walnut ink / prairie gold /
   cedar green / pottery clay; dark = "night prairie", via prefers-color-scheme
   only (no toggle, by design).
   ========================================================================== */

:root {
  /* prairie palette */
  --paper: #efecdf;
  --paper-2: #e6e1cd;
  --paper-3: #ddd6bd;
  --ink: #2e2718;
  --ink-soft: #5f553e;
  --gold: #9a7b22;
  --gold-bright: #c1992e;
  --green: #465430;
  --green-soft: #6d7c53;
  --clay: #8f4e2e;
  --line: #cfc6a9;
  --sky-1: #c3d5d4;
  --sky-2: #e7e5d2;
  --shadow: 0 1px 2px rgb(46 39 24 / 0.08), 0 8px 24px -12px rgb(46 39 24 / 0.25);

  /* admin chrome — the "back room" is dark walnut in both themes */
  --bark: #2a2315;
  --bark-2: #362e1c;
  --bark-line: #4a4028;
  --bark-text: #e9e1c8;
  --bark-soft: #a99d77;

  /* status language (calendar bars + badges share these) */
  --st-confirmed: var(--green);
  --st-held: var(--gold-bright);
  --st-external: var(--clay);
  --st-block: #837b64;
  --st-danger: #8f3a2e;

  /* admin layout metrics */
  --row-h: 46px;
  --cal-label: 172px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1f1b13;
    --paper-2: #292418;
    --paper-3: #332d1e;
    --ink: #eae2ca;
    --ink-soft: #b2a781;
    --gold: #d0a63c;
    --gold-bright: #e0b64a;
    --green: #93a56f;
    --green-soft: #6d7c53;
    --clay: #cd7d51;
    --line: #443c27;
    --sky-1: #232b36;
    --sky-2: #1f1b13;
    --shadow: 0 1px 2px rgb(0 0 0 / 0.4), 0 8px 24px -12px rgb(0 0 0 / 0.6);

    --bark: #16120b;
    --bark-2: #211b10;
    --bark-line: #362e1c;
    --bark-text: #e9e1c8;
    --bark-soft: #948a67;

    --st-confirmed: #5c6f3f;
    --st-held: #d0a63c;
    --st-external: #a05a36;
    --st-block: #6b644f;
    --st-danger: #a5503f;
  }
}
