/* FILE: /assets/css/tokens.css */
:root{
  /* Brand colors */
  --blush:#E6C3CF;
  --rose:#C98AA3;
  --gold:#C6A75E;
  --cream:#FAF6F4;
  --mauve:#6B4B57;
  --ink:#1A1617;

  /* UI neutrals */
  --line:rgba(26,22,23,.08);
  --muted:rgba(26,22,23,.72);
  --soft:rgba(255,255,255,.70);
  --focus:rgba(198,167,94,.85);

  /* Typography */
  --font-sans:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif:"Cormorant Garamond", ui-serif, Georgia, serif;

  /* Layout */
  --container:1120px;
  --pad-x:20px;
  --pad-x-md:32px;

  /* Spacing scale */
  --s-1:6px;
  --s-2:10px;
  --s-3:14px;
  --s-4:18px;
  --s-5:24px;
  --s-6:32px;
  --s-7:44px;
  --s-8:56px;
  --s-9:72px;
  --s-10:92px;

  /* Radii + shadows */
  --radius-sm:14px;
  --radius-md:18px;
  --radius-lg:22px;
  --shadow-sm:0 8px 22px rgba(26,22,23,.08);
  --shadow:0 12px 40px rgba(26,22,23,.10);
}

