/* === Marvelous Creations — design tokens ===
   Single source for colors, fonts, spacing across all pages.
   Override per page in scoped <style> blocks if needed. */
:root {
  /* Brand palette */
  --mc-deep:       #090704;
  --mc-cocoa:      #1a120c;
  --mc-text:       #241915;
  --mc-cream:      #fbf1e8;
  --mc-cream-warm: #fff8ef;
  --mc-blush:      #e8c2c0;
  --mc-blush-2:    #f5d8d6;
  --mc-rose-dark:  #b88784;
  --mc-line:       rgba(232,194,192,.18);
  --mc-line-h:     rgba(232,194,192,.32);

  /* Type stack */
  --mc-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --mc-body:    "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --mc-hard: cubic-bezier(.6,0,.2,1);
  --mc-soft: cubic-bezier(.32,.72,0,1);

  /* Layout */
  --mc-radius: 14px;
  --mc-shadow-card: 0 18px 48px rgba(9,7,4,.32), 0 6px 18px rgba(9,7,4,.18);
  --mc-shadow-pop:  0 24px 60px rgba(9,7,4,.55), 0 8px 22px rgba(9,7,4,.35);
}
