/* JoyBlast Coffee — Color tokens (LUXURY direction)
   Warm editorial luxury: ivory PAPER, warm-black INK, brushed-GOLD primary,
   with restrained, tonal accents (clay, honey, sage, wine). Lots of whitespace.
   NOTE: ramp keys keep their original prefixes so every component inherits the
   new values — read espresso- as "ink", cream- as "paper", blast- as "gold". */
:root {
  /* ---- Base ramps ---- */
  /* INK (warm near-black — text, fine rules, dark sections) */
  --espresso-900: #1E1A12;
  --espresso-800: #2B2618;
  --espresso-700: #3D3525;
  --espresso-600: #564B36;
  --espresso-500: #6E614A;

  /* PAPER (warm ivory — page & surfaces, never stark white at page level) */
  --cream-50:  #FBF8F1;
  --cream-100: #F5EFE2;
  --cream-200: #ECE3D1;
  --cream-300: #E0D4BE;

  /* Warm taupe (secondary text / borders) */
  --sand-600: #8A7E66;
  --sand-500: #A89A7E;
  --sand-300: #D5C9B2;

  /* Brushed GOLD / champagne (PRIMARY) */
  --blast-300: #E6D3A4;  /* light champagne */
  --blast-400: #CFB477;
  --blast-500: #B08D4F;  /* PRIMARY brushed gold */
  --blast-600: #94733A;
  --blast-700: #76592D;

  /* Clay (warm secondary accent) */
  --coral-400: #C68463;
  --coral-500: #B16A4A;
  --coral-600: #97543A;

  /* Honey (soft highlight) */
  --sunny-300: #ECDCAE;
  --sunny-400: #DCC07E;
  --sunny-500: #C7A458;

  /* Sage (cool tonal pop / success) */
  --mint-300: #BFC8AE;
  --mint-500: #889272;
  --mint-600: #6C7659;

  /* Wine (deep accent — links on dark, emphasis) */
  --grape-400: #95566A;
  --grape-500: #743F52;

  /* Status reds (muted wine-red) */
  --red-500: #B23A3A;
  --red-600: #95302F;

  /* Pure */
  --white: #FFFFFF;
  --black: #000000;

  /* ---- Semantic aliases ---- */
  --color-bg:            var(--cream-50);
  --color-bg-warm:       var(--cream-100);
  --surface-card:        var(--white);
  --surface-sunk:        var(--cream-100);
  --surface-inverse:     var(--espresso-900);

  --text-strong:         var(--espresso-900);
  --text-body:           var(--espresso-800);
  --text-muted:          var(--sand-600);
  --text-on-brand:       var(--espresso-900);  /* dark ink on gold reads richer than cream */
  --text-inverse:        var(--cream-50);

  --brand-primary:       var(--blast-500);
  --brand-primary-hover: var(--blast-600);
  --brand-primary-press: var(--blast-700);
  --brand-primary-soft:  var(--blast-300);

  --accent-coral:        var(--coral-500);
  --accent-sunny:        var(--sunny-500);
  --accent-mint:         var(--mint-500);
  --accent-grape:        var(--grape-500);

  --success:             var(--mint-600);
  --warning:             var(--sunny-500);
  --danger:              var(--red-500);

  --border-subtle:       #EFE7D5;
  --border-default:      #E2D6BF;
  --border-strong:       var(--espresso-900);
  --border-gold:         var(--blast-500);

  --focus-ring:          var(--blast-600);
}
