/*
 * design-tokens/default.css — "Editorial minimal" (green).
 *
 * The neutral, earlystage-style default. Loaded AFTER style.css, so it wins on
 * every colour token. Switch sets with the SITE_DESIGN_TOKENS constant; add new
 * brands as sibling files here — no PHP or template edits.
 */
:root {
  /* ── Brand core ── */
  --brand:           #0C5F52;
  --brand-mid:       #157A6B;
  --brand-dark:      #0A3D36;
  --brand-light:     #D7ECE7;
  --brand-pale:      #EEF7F4;

  /* ── Secondary / gradient ── */
  --brand-secondary: #157A6B;
  --brand-gradient:  linear-gradient(135deg, #0C5F52 0%, #157A6B 100%);

  /* ── Text ── */
  --text-1:          #0F172A;
  --text-2:          #334155;
  --text-3:          #64748B;

  /* ── Borders ── */
  --border:          #E5E9EC;
  --border-2:        #CBD5D3;

  /* ── Surfaces ── */
  --surface:         #FFFFFF;
  --surface-2:       #F7FAF9;
  --surface-3:       #EFF4F2;

  /* ── Semantic ── */
  --success:         #0C9E6E;
  --gold:            #B8860B;
  --silver:          #64748B;
  --bronze:          #92610E;
}
