/* ============================================================
   Efrat Stern — Theme tokens
   Warm linen + antique gold + forest green. Hebrew-first editorial
   register. All site-wide design tokens live here so they can be
   swapped without touching the layout in main.css.
   ============================================================ */

:root {
  /* Palette — "Warm scholar". Warm linen surfaces, antique-gold
     accent, deep forest for the trust band. Drops the Etsy-craft
     read of the previous terracotta + teal pairing for an
     editorial / academic-publishing register (cf. The Atlantic,
     Cabinet, scholarly mag chrome). Token names kept as-is so
     downstream rules don't change. */
  --bone:        #F1E9D8;   /* warm linen — main surface */
  --paper:       #FBF4E2;   /* cream — elevated surface */
  --ink:         #1F1B14;   /* warm dark text */
  --ink-2:       #514A3D;
  --ink-3:       #847B6A;
  --terracotta:  #B07F2A;   /* antique gold / amber (was terracotta) */
  --terracotta-soft: rgba(176, 127, 42, 0.08);
  --soft:        #E8D5A6;   /* parchment / pale amber (was soft terra) */
  --teal:        #2F5A3F;   /* forest green (was teal) */
  --teal-soft:   rgba(47, 90, 63, 0.08);
  --rule:        #D9CFB6;

  --bg:          var(--bone);
  --bg-alt:      var(--paper);
  --bg-deep:     var(--ink);
  --text:        var(--ink);
  --text-muted:  var(--ink-2);
  --text-faint:  var(--ink-3);
  --text-inverse: var(--bone);
  --accent:      var(--terracotta);

  --font-display: 'Varela Round', system-ui, -apple-system, sans-serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;
  /* Caveat — handwritten Latin (Google Fonts). Used surgically on
     hero stats, case-study outcome labels, manifesto signature,
     and editorial dates. Not for body text. */
  --font-hand:    'Caveat', 'Open Sans', cursive;
}
