/* ============================================================
   Weavo Studio — Design Tokens
   The single source of truth for colors, fonts, spacing.
   Change a value here and it updates everywhere.
   ============================================================ */

:root {
  /* neutrals — dark theme: --cream = light text, --ink = page ground */
  --cream:#ECE5D4; --cream-deep:#16120A; --paper:#1C1810;
  --ink:#0B0907; --char:#B6AC93; --stone:#9E9580; --mist:#A39A82;
  /* lines (gold-tinted, for dark surfaces) */
  --line:rgba(233,212,150,0.13); --line-strong:rgba(233,212,150,0.30);
  /* accent — GOLD */
  --accent:#C9A227; --accent-soft:#E8C96A; --accent-deep:#8F701B; --accent-glow:#F0D67E;
  /* deep surfaces */
  --navy:#100D08; --navy-deep:#050402;
  /* premium / flagship */
  --gold:#C9A227; --gold-soft:#F0D67E;
  /* type, layout, motion, radius */
  --serif:'Cormorant Garamond',Georgia,serif; --sans:'Manrope',-apple-system,BlinkMacSystemFont,sans-serif;
  --mono:'JetBrains Mono',monospace; --hand:'Caveat',cursive;
  --container:1480px; --gutter:clamp(20px,4vw,64px); --measure:68ch;
  --ease:cubic-bezier(0.2,0.8,0.2,1); --ease-out:cubic-bezier(0.16,1,0.3,1);
  --radius:5px; --radius-pill:999px;
  /* iridescent gold gradient for shimmer accents */
  --gold-grad:linear-gradient(100deg,#8F701B 0%,#C9A227 28%,#F0D67E 52%,#E7D7A8 72%,#C9A227 100%);
  /* aliases used by the home page styles */
  --black: var(--ink); --black-2: var(--navy); --panel: var(--cream-deep); --panel-2: var(--paper);
  --bone: var(--cream); --bone-2: var(--char); --muted: var(--mist);
  --gold-bright: var(--accent-glow); --gold-deep: var(--accent-deep); --champagne: #E7D7A8;
}
