/* ===========================
   DESIGN TOKENS
   Professional dark — deep slate, warm gold accent
=========================== */

:root{

    /* ---- Background layers ---- */
    --bg-color:#0F0E0C;
    --surface-color:#181511;
    --white:#1F1C18;

    /* ---- Text — high contrast on dark ---- */
    --primary-text:#EDE8DF;
    --secondary-text:#A09589;

    /* ---- Accent: warm antique gold ---- */
    --accent:#C8923A;
    --accent-soft:rgba(200,146,58,.13);

    /* ---- Borders ---- */
    --border:#2E2A24;

    /* ---- Type ---- */
    --heading-font:'Cormorant Garamond', serif;
    --body-font:'Inter', sans-serif;

    /* ---- Shadow ---- */
    --shadow:0 20px 50px rgba(0,0,0,.45);
    --shadow-strong:0 25px 60px rgba(0,0,0,.65);

    /* ---- Motion ---- */
    --ease:cubic-bezier(.4,0,.2,1);
}