/* ===========================================================
   CASA FLORA — DESIGN TOKENS
   Dark, cinematic, botanical-noir. Single fixed theme by design.
   =========================================================== */

:root{
  /* ---- type ---- */
  --font-display:'Fraunces', ui-serif, Georgia, serif;
  --font-body:'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-mono:'Space Mono', ui-monospace, monospace;

  /* ---- motion ---- */
  --ease:cubic-bezier(.22,.68,0,1);
  --ease-soft:cubic-bezier(.16,.84,.44,1);
  --dur-fast:.28s;
  --dur-med:.55s;
  --dur-slow:.9s;

  /* ---- layout ---- */
  --maxw:1320px;
  --gutter:clamp(1.25rem,4vw,3.25rem);
  --radius:3px;
  --radius-lg:10px;

  /* ---- brand ---- */
  --wine:#7c2a38;
  --wine-light:#a24f5b;
  --gold:#c9a15e;
  --gold-soft:#e0c78d;
  --gold-dim:#8f7343;
  --sage:#8fa080;
  --sage-deep:#5e7256;

  /* ---- z-index scale ---- */
  --z-bg:-2;
  --z-scrim:-1;
  --z-nav:100;
  --z-overlay:200;
  --z-modal:300;
  --z-loader:400;
  --z-toast:500;

  /* ---- dark palette (only palette) ---- */
  --ink:#0b100d;
  --ink-1:#0f1512;
  --ink-2:#151d18;
  --ink-3:#1c2620;
  --ink-4:#26332b;
  --ivory:#f5f0e6;
  --ivory-dim:#cfc9bb;
  --ivory-faint:#95917f;
  --line:rgba(245,240,230,0.12);
  --line-strong:rgba(245,240,230,0.22);
  --surface:var(--ink-2);
  --surface-raised:var(--ink-3);
  --shadow:0 30px 70px -30px rgba(0,0,0,0.7);
  --shadow-lg:0 50px 100px -40px rgba(0,0,0,0.75);
  --scrim-strong:rgba(9,13,10,0.92);
  --scrim-soft:rgba(9,13,10,0.55);
  --video-filter:saturate(1.03) brightness(0.94);
  --accent-on-ink:var(--gold-soft);
  color-scheme: dark;
}

