/* Sterling Ice Co. — Dark Frontier Glacier theme
   A cold mountain-night ledger: deep charcoal, frost-steel, and brass. */
:root {
  /* Surfaces (cold dark) */
  --bg: #0b1116;
  --bg-2: #0e161d;
  --surface: #131e26;
  --surface-2: #18242e;
  --surface-3: #1e2c37;

  /* Ink / text (frost light) */
  --ink: #eaf1f5;
  --text: #eaf1f5;
  --text-muted: #a4b8c4;
  --text-subtle: #708795;

  /* Borders */
  --border: #2a3a45;
  --border-strong: #364c59;
  --rule: #3a4f5c;

  /* Glacier steel (primary accent) */
  --accent: #4f9fb8;
  --accent-strong: #357d96;
  --accent-soft: #79b8cd;
  --frost: #bfe2ea;

  /* Brass / gold ornament */
  --brass: #c2992f;
  --brass-light: #dcb24a;

  /* Status */
  --success: #6aab57;
  --warning: #d49a3a;
  --danger: #d65749;

  --shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --radius-lg: 12px;

  color-scheme: dark;
}

body {
  background-color: var(--bg);
}
