/* Com-Pass Consultant — Effects: shadows, borders, motion
   Sober & solid. Subtle shadows only; transitions = fade / soft. No bounce. */

:root {
  /* ── Elevation (soft, cool navy-tinted) ──────── */
  --shadow-xs: 0 1px 2px rgba(27, 45, 91, 0.06);
  --shadow-sm: 0 1px 3px rgba(27, 45, 91, 0.08), 0 1px 2px rgba(27, 45, 91, 0.05);
  --shadow-md: 0 4px 12px rgba(27, 45, 91, 0.10);
  --shadow-lg: 0 12px 32px rgba(27, 45, 91, 0.14);

  /* ── Borders ─────────────────────────────────── */
  --border-thin:   1px solid var(--cp-border);
  --border-soft:   1px solid var(--cp-grey-050);
  --border-card:   1px solid #E4E7EC; /* @kind other */

  /* ── Motion — sober transitions only ─────────── */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   200ms; /* @kind other */
  --dur-slow:   320ms; /* @kind other */

  /* ── Navy image overlay (photos behind text) ─── */
  --overlay-navy: linear-gradient(0deg, rgba(27,45,91,0.72), rgba(27,45,91,0.72)); /* @kind other */
}
