/* ============================================================
   Brownsett Personal Estate Agents — Colour tokens
   Two brand colours, straight from the mark:
     Aubergine  #412B4D  (primary)
     Champagne  #C8B274  (gold accent)
   Warm cream / paper neutrals keep everything harmonious.
   Gold is a precious accent — never a large fill.
   ============================================================ */
:root {
  /* ---- Brand: Aubergine ------------------------------------ */
  --aubergine-900: #251530;
  --aubergine-800: #2E1E3B;
  --aubergine-700: #382544;
  --aubergine-600: #412B4D;  /* CORE brand aubergine (from logo) */
  --aubergine-500: #543a62;
  --aubergine-400: #6f5480;
  --aubergine-300: #9a86a7;
  --aubergine-200: #c6bccd;
  --aubergine-100: #e7e1eb;
  --aubergine-050: #f4f1f6;

  /* ---- Brand: Champagne gold ------------------------------- */
  --gold-700: #8f7a44;
  --gold-600: #a8925a;
  --gold-500: #c8b274;  /* CORE brand gold (from logo) */
  --gold-400: #d6c48f;
  --gold-300: #e3d6ac;
  --gold-200: #efe7cd;
  --gold-100: #f7f2e6;

  /* ---- Warm neutrals --------------------------------------- */
  --ink-900: #1c1720;
  --ink-800: #2a2430;
  --ink-700: #423b49;
  --neutral-600: #6b6472;
  --neutral-500: #8b8492;
  --neutral-400: #aaa4b0;
  --neutral-300: #cbc7cf;
  --neutral-200: #e4e1e7;
  --neutral-100: #f1eef2;
  --cream: #EDE8DF;     /* warm page background (stationery paper) */
  --cream-light: #F7F4EF;
  --paper: #FBF9F5;     /* card / raised surface */
  --white: #ffffff;

  /* ---- Semantic aliases ------------------------------------ */
  --brand: var(--aubergine-600);
  --brand-strong: var(--aubergine-800);
  --accent: var(--gold-500);
  --accent-strong: var(--gold-600);

  --surface-page: var(--cream);
  --surface-card: var(--paper);
  --surface-raised: var(--white);
  --surface-inverse: var(--aubergine-600);
  --surface-inverse-deep: var(--aubergine-900);

  --text-heading: var(--aubergine-800);
  --text-body: var(--ink-800);
  --text-muted: var(--neutral-600);
  --text-on-brand: var(--gold-200);
  --text-on-brand-strong: #EDE4D4;
  --text-on-accent: var(--aubergine-800);
  --text-accent: var(--gold-700);

  --border-subtle: var(--neutral-200);
  --border-default: var(--neutral-300);
  --border-strong: var(--aubergine-600);
  --border-accent: var(--gold-500);

  --success: #4c7a52;
  --warning: #b8892f;
  --danger:  #a5473f;
  --info:    var(--aubergine-500);
}
