/* =========================
   ISHU CREATION
   Design System – Base
   ========================= */

/* Brand Colors */
:root {
  --color-bg: #FAF8F5;
  --color-text-primary: #1C1C1C;
  --color-text-secondary: #6B6B6B;
  --color-accent-gold: #C2A76D;
  --color-accent-rose: #C08A8A;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Body Styles */
body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
