/* tokens.css — palette, type, motion.
 *
 * Palette is sampled from the darshan art: the sanctum's warm dark (never true black;
 * black reads as inauspicious at a wedding), kumkum drapes, sindoor, marigold, turmeric
 * and the brass of the murti.
 */

:root {
  /* ---- palette ------------------------------------------------------- */
  --garbha: #1b0609;        /* sanctum dark */
  --garbha-2: #2a0a0f;
  --kumkum: #4a0d16;        /* drapes */
  --kumkum-2: #6b1420;
  --sindoor: #d2451e;
  --marigold: #f4a21a;
  --haldi: #f6c445;
  --brass: #d9a84e;
  --brass-hi: #f8e3a6;
  --brass-lo: #8f5c1d;
  --ivory: #fff1dc;
  --ivory-dim: rgba(255, 241, 220, 0.74);
  --ivory-faint: rgba(255, 241, 220, 0.5);
  --line: rgba(217, 168, 78, 0.38);

  --gold-text: linear-gradient(178deg, #fff4cf 8%, #f3d27e 38%, #d49a3c 62%, #f6dd98 88%);

  /* ---- type ---------------------------------------------------------- */
  --font-display: "Eczar", "Tiro Devanagari Sanskrit", Georgia, serif;
  --font-deva: "Tiro Devanagari Sanskrit", "Eczar", serif;
  --font-poem: "Cormorant Garamond", Georgia, serif;
  --font-body: "Eczar", Georgia, serif;

  /* ---- layout -------------------------------------------------------- */
  --col: min(100vw, 480px);
  --pad: clamp(20px, 6vw, 32px);

  /* ---- motion -------------------------------------------------------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 180ms;
  --dur-md: 480ms;
  --dur-slow: 900ms;
  --dur-xl: 1400ms;
  --stagger: 110ms;
  --rise: 22px;
}
