/* ============================================================
   COLORS
   A warm, heraldic palette: brand GOLD (the site theme color
   #C7952B), warm parchment grounds, deep warm ink, with oxblood
   (the covenant / the lions) and olive (the olive branch of the
   crest) as ceremonial accents.
   ============================================================ */
:root {
  /* --- Brand gold (primary) --- */
  --gold-100: #F8EBCB;
  --gold-200: #F0D9A3;
  --gold-300: #E6C476;
  --gold-400: #D8AC4C;
  --gold-500: #C7952B; /* BRAND — site theme color */
  --gold-600: #A87B1E;
  --gold-700: #856014;
  --gold-800: #5F4510;

  /* --- Warm neutrals / parchment --- */
  --parchment-50:  #FBF7EC; /* page ground (ivory) */
  --parchment-100: #F5ECD9; /* raised surface */
  --parchment-200: #E9DBBE; /* wash / hairline on light */
  --parchment-300: #D9C59C; /* stronger border on light */

  /* --- Warm ink (text + dark grounds) --- */
  --ink-300: #9A8A6E;
  --ink-400: #7E6E52;
  --ink-500: #5E5038; /* secondary text */
  --ink-600: #463A26;
  --ink-700: #2E2619;
  --ink-800: #211B11;
  --ink-900: #16120B; /* primary text / deepest ground */

  --white: #FFFFFF;
  --black: #000000;

  /* --- Oxblood (covenant / lions of Judah) --- */
  --oxblood-100: #F3DADA;
  --oxblood-500: #7A1F1F;
  --oxblood-600: #651717;
  --oxblood-700: #4E1010;

  /* --- Olive (the olive branch of the crest) --- */
  --olive-100: #E4E6D2;
  --olive-500: #5E6B3B;
  --olive-600: #4A552D;
  --olive-700: #38411F;

  /* ==========================================================
     SEMANTIC ALIASES — reference these in components.
     ========================================================== */

  /* Surfaces */
  --bg-page:        var(--parchment-50);
  --bg-page-dark:   var(--ink-900);
  --surface-card:   var(--white);
  --surface-raised: var(--parchment-100);
  --surface-sunken: var(--parchment-200);
  --surface-inverse: var(--ink-900);

  /* Text */
  --text-primary:   var(--ink-900);
  --text-secondary: var(--ink-500);
  --text-muted:     var(--ink-300);
  --text-on-dark:   var(--parchment-50);
  --text-on-gold:   var(--ink-900);
  --text-brand:     var(--gold-700);
  --text-link:      var(--gold-700);

  /* Borders / dividers */
  --border-subtle:  var(--parchment-200);
  --border-default: var(--parchment-300);
  --border-strong:  var(--ink-900);
  --border-gold:    var(--gold-500);

  /* Brand */
  --brand:          var(--gold-500);
  --brand-hover:    var(--gold-600);
  --brand-active:   var(--gold-700);
  --brand-tint:     var(--gold-100);
  --accent:         var(--oxblood-500);
  --accent-tint:    var(--oxblood-100);

  /* Status (kept ceremonial, on-palette) */
  --success:        var(--olive-600);
  --success-tint:   var(--olive-100);
  --danger:         var(--oxblood-500);
  --danger-tint:    var(--oxblood-100);
  --notice:         var(--gold-600);
  --notice-tint:    var(--gold-100);

  /* Focus */
  --focus-ring:     var(--gold-500);
}
