/* ============================================================
   LFG BEVERAGE: EFFECTS: radii, borders, shadows, motion
   Restrained & premium: hairline gold rules, soft warm shadows,
   minimal rounding. Cards are near-square with thin borders.
   ============================================================ */
:root {
  /* radii: spirits packaging is crisp; keep rounding subtle */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* border widths */
  --border-hair: 1px;
  --border-thin: 1.5px;
  --border-thick: 2px;

  /* hairline gold rule (dividers under eyebrows, crest flourishes) */
  --rule-gold: linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--gold-300) 50%, var(--gold-500) 80%, transparent); /* @kind color */

  /* shadows: warm, low, cinematic (no cool grey drops) */
  --shadow-sm: 0 1px 2px rgba(12,10,6,0.28);
  --shadow-md: 0 8px 24px rgba(12,10,6,0.34);
  --shadow-lg: 0 24px 60px rgba(12,10,6,0.45);
  --shadow-gold: 0 10px 40px rgba(190,146,44,0.28);
  --shadow-inset-top: inset 0 1px 0 rgba(255,255,255,0.06);

  /* glow used behind product/hero elements */
  --glow-gold: radial-gradient(ellipse at center, rgba(233,206,140,0.35), rgba(190,146,44,0.10) 45%, transparent 70%); /* @kind color */

  /* protection scrim for text over imagery */
  --scrim-bottom: linear-gradient(to top, rgba(12,10,6,0.92) 0%, rgba(12,10,6,0.55) 40%, transparent 100%); /* @kind color */
  --scrim-full:   linear-gradient(to top, rgba(12,10,6,0.85), rgba(12,10,6,0.35)); /* @kind color */

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 160ms;   /* @kind other */
  --dur-base: 280ms;   /* @kind other */
  --dur-slow: 520ms;   /* @kind other */

  /* focus ring */
  --focus-ring: 0 0 0 2px var(--ink-900), 0 0 0 4px var(--gold-500);
}
