/* Orliea — "Rose deep" sketch theme.
 * The palette the LIVE daily logging screen uses (app/(app)/log.tsx:960, --bg-base #250818).
 * Originated as `body.rosedeep` overrides in sketch 001; promoted to a standalone theme
 * file here so onboarding sketch 003 renders on the same theme as the log screen.
 *
 * Mirrors default.css structure. Only backgrounds, text, hairlines and --grad-soft differ
 * from plum; section accents (pink / violet / gold / flame / wine / burnt) are unchanged.
 */
:root{
  /* Backgrounds — deep rose, never true black */
  --bg-darkest:#170610;
  --bg-base:#250818;
  --bg-raised:#330E22;
  --bg-raised-2:#3F1429;

  /* Section accents — unchanged from plum */
  --wine:#802A4F;
  --burnt:#C86734;
  --flame:#DF6631;   /* CTAs */
  --pink:#C64790;
  --violet:#AC87C1;
  --gold:#E9B96E;    /* shimmer / streak */

  /* Text — rose-tinted */
  --ink:#FBEAF2;
  --muted:#D2A2B8;
  --faint:#A2738A;

  /* Hairlines / fills */
  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.15);
  --fill-soft:rgba(255,255,255,.045);

  /* Type */
  --font-head:'Fraunces',Georgia,serif;
  --font-body:'Hanken Grotesk',-apple-system,'Segoe UI',sans-serif;

  /* Shape */
  --r-sm:10px;
  --r-md:16px;
  --r-lg:22px;
  --r-pill:999px;

  /* Shadow + glow */
  --shadow-card:0 10px 30px rgba(0,0,0,.34);
  --shadow-cta:0 8px 26px rgba(223,102,49,.40);
  --sheen-cta:inset 0 1px 0 rgba(255,255,255,.45), inset 0 -6px 14px rgba(128,42,79,.40);

  /* Gradients */
  --grad-cta:linear-gradient(135deg,var(--pink),var(--flame));
  --grad-gold:linear-gradient(135deg,#F3D9A6,var(--gold));
  --grad-soft:linear-gradient(135deg,#E08A3F,#DD7FA8); /* amber → rose (rosedeep) */
}
