/* ═══════════ Cartographer design tokens ═══════════ */
:root {
  --bg:        #0d1128;
  --bg-2:      #111634;
  --plate:     #131a3a;
  --plate-2:   #182046;
  --hairline:  rgba(201,171,110,0.18);
  --hairline-2:rgba(233,225,205,0.09);
  --brass:     #c9ab6e;
  --brass-hi:  #e8cd92;
  --brass-dim: #8a7546;
  --ink:       #ece5d3;
  --ink-2:     #b3ac97;
  --ink-3:     #6f6f7e;
  --blue:      #8fb8d8;
  --green:     #93c68f;
  --red:       #d98d76;
  --ease-out-cubic: cubic-bezier(.215,.61,.355,1);
  --slide-t: 280ms;
}
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Avenir Next", "Segoe UI", sans-serif;
  font-size: 14px; line-height: 1.55;
  overflow: hidden;
}
.serif { font-family: "Iowan Old Style", "Palatino", Georgia, serif; }
