/* ============================================================================
   fabric — stylesheet entry point
   ----------------------------------------------------------------------------
   A Wunderlist 2 skin, rebuilt from measurements of the original macOS app
   bundle. Every colour, metric and texture comes from DESIGN_TOKENS.md in the
   project root; that document records where each number was sampled from.

   The layers, in cascade order:

     tokens      every value as a custom property — EDIT THIS ONE to retune
                 the whole app. Nothing else should hold a raw hex.
     base        reset, font stack, the body surface, focus, scrollbars
     layout      the app shell: sidebar + content, and narrow-window behaviour
     sidebar     36px paper rows, dotted separators, the blue selection
     tasks       the 34px card, the dotted divider, checkbox, star, add bar
     notes       the ruled notepad and its baseline arithmetic
     gallery     tabbed image area
     modal       the centred dialogs: editing a project/area, image lightbox
     account     the account menu, Preferences, the background picker
     forms       buttons, fields, the login / setup gate

   forms.css is LAST on purpose: `.btn` and its modifiers are single-class
   selectors, so anything that redeclares a button's colour earlier in the chain
   silently loses to it. Keep .btn--* rules in forms.css.

   Vanilla CSS. No preprocessor, no framework, no webfont — the last one on
   purpose: the whole visual language depends on Helvetica's tight, even
   colour, and a humanist substitute reads soft and wrong (DESIGN_TOKENS §2.1).
   Light theme only, per the brief.
   ========================================================================== */

@import url("tokens.css");
@import url("base.css");
@import url("layout.css");
@import url("sidebar.css");
@import url("tasks.css");
@import url("notes.css");
@import url("gallery.css");
@import url("detail.css");
@import url("area.css");
@import url("modal.css");
@import url("account.css");
@import url("forms.css");
