/* Corpora Aerial Service: design tokens.
   World: a VFR flight plan filed on paper. Green-ruled nav-log paper,
   spruce ink, one ag-yellow accent. Radius 0 everywhere. */

:root {
  /* ground */
  --paper: #F4F3E9;
  --paper-2: #EBEADD;

  /* ink */
  --ink: #1F2B22;        /* 13.3:1 on paper */
  --ink-2: #4A564C;      /* secondary text, 6.6:1 on paper */

  /* brand */
  --green: #3D5A38;      /* 7.0:1 on paper, large text and strokes */
  --yellow: #E7A614;     /* graphic only on paper; 6.9:1 text on ink */
  --ochre: #8A6408;      /* yellow-family text on paper, 4.9:1 */

  /* lines */
  --hairline: rgba(31, 43, 34, 0.28);
  --hairline-soft: rgba(31, 43, 34, 0.14);
  --grid-line: rgba(110, 128, 99, 0.16);
  --grid-line-dark: rgba(244, 243, 233, 0.05);

  /* type */
  --display: "Brawler", Georgia, "Times New Roman", serif;
  --body: "Quantico", Verdana, Geneva, sans-serif;

  /* spacing scale, 8px base */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --s8: 128px;

  /* structure */
  --measure: 62ch;
  --wrap: 1160px;
  --head-h: 72px;

  /* motion */
  --draw-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 160ms;
  --t-med: 260ms;
}
