/* HotelHinge design tokens - copied VERBATIM from the shipping app (09 - Web App/public/styles.css :root,
   the canonical warm institutional palette). Single source of truth; every page links this first so the
   landing, the live mini-window, and the legal pages all share one set of tokens. */
:root{
  --ink:#1a2230; --ink2:#3a4658; --muted:#5b6470; --line:#e7e3da; --line2:#f1efe8;
  --bg:#f6f5f1; --panel:#ffffff; --accent:#163a64; --link:#2f6fb0; --green:#1d7a4d; --gold:#c79320;
  /* event-type accents (transactions + sale tags). Tuned so white tag text clears AA (>=4.5:1). */
  --sale:#2f6fb0; --refinance:#0c7d7d; --development:#a0660c; --opening:#1d7a4d;
  --conversion:#7a4fcf; --other:#6b7480;
  --mono:"SFMono-Regular",ui-monospace,Menlo,Consolas,monospace;
}
*{box-sizing:border-box}
html,body{margin:0}
body{background:var(--bg);color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;font-size:13px;-webkit-font-smoothing:antialiased}
a{color:var(--link);text-decoration:none}a:hover{text-decoration:underline}
:focus-visible{outline:2px solid var(--link);outline-offset:2px;border-radius:3px}
.muted{color:var(--muted)}.mono{font-variant-numeric:tabular-nums;font-family:var(--mono)}
.dash{color:var(--muted)}
